Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
50b36741673258aaebcd3c7fe1260031901cae57
/
.
/
test
/
CodeGen
/
enum.c
blob: c8641926ee27fb231ad93f57ebbdda128e85d003 [
file
] [
log
] [
blame
]
// RUN: clang %s -emit-llvm-bc -o - | opt -std-compile-opts | llvm-dis | grep 'ret i32 6'
static
enum
{
foo
,
bar
=
1U
}
z
;
int
main
(
void
)
{
int
r
=
0
;
if
(
bar
-
2
<
0
)
r
+=
4
;
if
(
foo
-
1
<
0
)
r
+=
2
;
if
(
z
-
1
<
0
)
r
++;
return
r
;
}