Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
28de78bf9b8532b7733f49aea54b7fae651af490
/
.
/
test
/
CodeGen
/
trapu.c
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
;
}