summaryrefslogtreecommitdiff
path: root/test/ubsan_minimal/TestCases/implicit-integer-truncation.c
blob: 1db6e6976815ca8a49c9e2c9257eb09bb4547e65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// RUN: %clang -fsanitize=implicit-integer-truncation %s -o %t && %run %t 2>&1 | FileCheck %s --check-prefixes=CHECK

#include <stdint.h>

int main() {
// CHECK-NOT: integer-truncation.c

  // 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

  return 0;
}