blob: 640a6b1b7c04f2573f5d0e222a7371e59dbbd3ca [file] [log] [blame]
// RUN: clang-cc -ftrapu %s -emit-llvm -o %t &&
// RUN: grep "__overflow_handler" %t | count 3
unsigned int ui, uj, uk;
int i, j, k;
void foo() {
ui = uj + uk;
i = j + k;
}