mirror of
https://github.com/opnsense/src.git
synced 2026-02-20 16:30:53 -05:00
10 lines
178 B
C
10 lines
178 B
C
// RUN: %clang_cc1 -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;
|
|
}
|