Sign in
fuchsia
/
third_party
/
swift-clang
/
a40ea3abe6e2f0b338d00c38fe7d724241c5af97
/
.
/
test
/
CodeGen
/
2003-08-17-DeadCodeShortCircuit.c
blob: 031b530672a3fac24d50173fcc7c3cc07c274024 [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -x c %s -emit-llvm -o /dev/null
int
test
(
_Bool
pos
,
_Bool
color
)
{
return
0
;
return
(
pos
&&
color
);
}