repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2015-09-24 Vladimir Makarov <vmakarov@redhat.com>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
do-empty.c
blob
350261d48ed831fc5b5189fa6424bc3bbf18c6ee
1
/* Test diagnostics for empty bodies in do / while. */
2
/* { dg-do compile } */
3
/* { dg-options "-Wempty-body" } */
4
5
void
6
f
(
int
x
)
7
{
8
do
9
;
/* { dg-warning "empty body in" } */
10
while
(
x
--);
11
12
do
13
{}
/* { dg-bogus "empty body in" } */
14
while
(++
x
<
10
);
15
}