summaryrefslogtreecommitdiffstats
path: root/compiler-rt/lib/ubsan/lit_tests/Misc/bool.cpp
blob: 4df1fb82a5d631bc332d9b6fb26ce18a5fa892f7 (plain)
1
2
3
4
5
6
7
8
9
10
// RUN: %clang -fsanitize=bool %s -O3 -o %t && %t 2>&1 | FileCheck %s

unsigned char NotABool = 123;

int main(int argc, char **argv) {
  bool *p = (bool*)&NotABool;

  // CHECK: error: load of value 123, which is not a valid value for type 'bool'
  return *p;
}
OpenPOWER on IntegriCloud