diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2019-01-19 10:05:08 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2019-01-19 10:05:08 +0000 |
commit | 0646903fc1f75f6e605754621119473ee083f4a4 (patch) | |
tree | 57bce79a7423a054cccec23bdf6cd96e2d271b4a /test/ubsan_minimal/TestCases/implicit-unsigned-integer-truncation.c | |
parent | 005b7ed8f76756d94ef6266ded755ab7863cb936 (diff) |
Diffstat (limited to 'test/ubsan_minimal/TestCases/implicit-unsigned-integer-truncation.c')
-rw-r--r-- | test/ubsan_minimal/TestCases/implicit-unsigned-integer-truncation.c | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/test/ubsan_minimal/TestCases/implicit-unsigned-integer-truncation.c b/test/ubsan_minimal/TestCases/implicit-unsigned-integer-truncation.c new file mode 100644 index 000000000000..8b9e166af812 --- /dev/null +++ b/test/ubsan_minimal/TestCases/implicit-unsigned-integer-truncation.c @@ -0,0 +1,25 @@ +// RUN: %clang -fsanitize=implicit-unsigned-integer-truncation %s -o %t && %run %t 2>&1 | FileCheck %s --check-prefixes=CHECK + +#include <stdint.h> + +int main() { +// CHECK-NOT: implicit-conversion + + // Negative tests. Even if they produce unexpected results, this sanitizer does not care. + int8_t n0 = (~((uint32_t)(0))); // ~0 -> -1, but do not warn. + uint8_t n2 = 128; + uint8_t n3 = 255; + // Bools do not count + _Bool b0 = (~((uint32_t)(0))); + _Bool b1 = 255; + + // Explicit and-ing of bits will silence it. + uint8_t nc0 = ((~((uint32_t)(0))) & 255); + + // Positive tests. + uint8_t t0 = (~((uint32_t)(0))); +// CHECK: implicit-conversion +// CHECK-NOT: implicit-conversion + + return 0; +} |