aboutsummaryrefslogtreecommitdiff
path: root/lib/ubsan
diff options
context:
space:
mode:
authorDimitry Andric <dim@FreeBSD.org>2017-12-28 21:23:12 +0000
committerDimitry Andric <dim@FreeBSD.org>2017-12-28 21:23:12 +0000
commitce2df4ef53e14dc3b8585123e49729f1cdf4c0af (patch)
tree1e2e9d234fedf682852e50eff6c15ea64caa31d1 /lib/ubsan
parent46d7550315cd1db7e0cdf313e2702222751d8a24 (diff)
downloadsrc-ce2df4ef53e14dc3b8585123e49729f1cdf4c0af.tar.gz
src-ce2df4ef53e14dc3b8585123e49729f1cdf4c0af.zip
Vendor import of compiler-rt trunk r321530:vendor/compiler-rt/compiler-rt-trunk-r321530
Notes
Notes: svn path=/vendor/compiler-rt/dist/; revision=327304 svn path=/vendor/compiler-rt/compiler-rt-trunk-r321530/; revision=327305; tag=vendor/compiler-rt/compiler-rt-trunk-r321530
Diffstat (limited to 'lib/ubsan')
-rw-r--r--lib/ubsan/ubsan_handlers.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/ubsan/ubsan_handlers.cc b/lib/ubsan/ubsan_handlers.cc
index f674c027cd91..bcda746a1783 100644
--- a/lib/ubsan/ubsan_handlers.cc
+++ b/lib/ubsan/ubsan_handlers.cc
@@ -38,7 +38,8 @@ bool ignoreReport(SourceLocation SLoc, ReportOptions Opts, ErrorType ET) {
const char *TypeCheckKinds[] = {
"load of", "store to", "reference binding to", "member access within",
"member call on", "constructor call on", "downcast of", "downcast of",
- "upcast of", "cast to virtual base of", "_Nonnull binding to"};
+ "upcast of", "cast to virtual base of", "_Nonnull binding to",
+ "dynamic operation on"};
}
static void handleTypeMismatchImpl(TypeMismatchData *Data, ValueHandle Pointer,