Sign in
llvm
/
llvm-archive
/
48649d2c83b557841c9e5c978d9ab5af13cb52e5
/
.
/
llvm-gcc-4.0
/
gcc
/
testsuite
/
gcc.dg
/
20031111-1.c
blob: f4de52257bcba5ffbe4389a30ad5bb775627e873 [
file
] [
log
] [
blame
]
/* Make sure that dead code isn't eliminated too early, avoiding
detection of errors. */
/* { dg-do compile } */
void
foo
(
void
)
{
if
(
0
)
break
;
/* { dg-error "" } */
if
(
1
)
;
else
continue
;
/* { dg-error "" } */
}