summaryrefslogtreecommitdiffstats
path: root/test/CodeGen/trapv.c
blob: c96488b8e99b6bc7c1bb78f597e7e46fc6010f66 (plain)
1
2
3
4
5
6
7
8
9
10
// RUN: clang-cc -ftrapv %s -emit-llvm -o %t &&
// RUN: grep "__overflow_handler" %t | count 2

unsigned int ui, uj, uk;
int i, j, k;

void foo() {
  ui = uj + uk;
  i = j + k;
}
OpenPOWER on IntegriCloud