Sign in
gnu
/
gcc
/
a6d3012b274f38b20e2a57162106f625746af6c6
/
.
/
gcc
/
testsuite
/
gcc.dg
/
do-empty.c
blob: 350261d48ed831fc5b5189fa6424bc3bbf18c6ee [
file
] [
log
] [
blame
]
/* Test diagnostics for empty bodies in do / while. */
/* { dg-do compile } */
/* { dg-options "-Wempty-body" } */
void
f
(
int
x
)
{
do
;
/* { dg-warning "empty body in" } */
while
(
x
--);
do
{}
/* { dg-bogus "empty body in" } */
while
(++
x
<
10
);
}