Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
llvm
/
c7e07aa0d68bc3ea3bc922224a5d39f544f54ec3
/
.
/
test
/
CFrontend
/
2003-08-17-DeadCodeShortCircuit.c.tr
blob: 938ea9ff2b42b7c18c3505920bdd302dd249de84 [
file
] [
log
] [
blame
]
Chris Lattner
c7e07aa
2003-08-18 02:57:31 +0000
[
diff
] [
blame^
]
1
// RUN: llvmgcc -xc %s -c
2
3
int
test
(
_Bool
pos
,
_Bool
color
)
{
4
return
0
;
5
return
(
pos
&&
color
);
6
}
7