Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
llvm
/
71287953e60d3437b51a69fd3f016b03f5011c52
/
.
/
test
/
FrontendC
/
2003-08-17-DeadCodeShortCircuit.c
blob: c275fee5d09a313b817ff176876c74a6cd6ed801 [
file
] [
log
] [
blame
]
Dan Gohman
f17a25c
2007-07-18 16:29:46 +0000
[
diff
] [
blame
]
1
// RUN: %llvmgcc -xc %s -c -o %t.o
2
3
int
test
(
_Bool
pos
,
_Bool
color
)
{
4
return
0
;
5
return
(
pos
&&
color
);
6
}
7