mirror of
https://github.com/opnsense/src.git
synced 2026-02-27 11:50:47 -05:00
10 lines
179 B
C
10 lines
179 B
C
// 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;
|
|
}
|