Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
d7d5f0223bd30dfd618762349c6209dd1d5ea3e6
/
.
/
test
/
CodeGen
/
cxx-condition.cpp
blob: 330a17a10a43dcc2eb4df9885454f58243f69277 [
file
] [
log
] [
blame
]
// RUN: clang-cc -emit-llvm %s -o %t
void
f
()
{
int
a
;
if
(
int
x
=
a
)
++
a
;
else
a
=
x
;
while
(
int
x
=
a
)
++
a
;
for
(;
int
x
=
a
;
--
a
)
;
switch
(
int
x
=
0
)
{
}
}