Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / compiler-rt / test / ubsan / TestCases / Misc / bool.m
blob0430b452b98739054e52298d27b10e03dc5b1d6b
1 // RUN: %clang -fsanitize=bool %s -O3 -o %t
2 // RUN: not %run %t 2>&1 | FileCheck %s
3 // RUN: %env_ubsan_opts=print_summary=1:report_error_type=1 not %run %t 2>&1 | FileCheck %s --check-prefix=SUMMARY
5 typedef char BOOL;
6 unsigned char NotABool = 123;
8 int main(int argc, char **argv) {
9   BOOL *p = (BOOL*)&NotABool;
11   // CHECK: bool.m:[[@LINE+1]]:10: runtime error: load of value 123, which is not a valid value for type 'BOOL'
12   return *p;
13   // SUMMARY: SUMMARY: {{.*}}Sanitizer: invalid-bool-load {{.*}}bool.m:[[@LINE-1]]