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
PR target/55146
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr35742.c
blob
609472792097e1464e17fb2010a98b9241c6937b
1
/* PR c/35742 */
2
/* { dg-do compile } */
3
/* { dg-options "-std=gnu99" } */
4
/* { dg-bogus "not supported by" "" { target *-*-* } 0 } */
5
6
void
7
foo
()
8
{
9
for
(;;)
10
({
break
;})();
/* { dg-error "is not a function" } */
11
for
(;;)
12
({
continue
;})();
/* { dg-error "is not a function" } */
13
}