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
* doc/extend.texi (Loop-Specific Pragmas): Document pragma GCC unroll.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
ext
/
label9.C
blob
81b385ffe3ae2066ebcda6b87839be00f230219d
1
// PR c++/32121
2
// { dg-do compile }
3
4
int f (void)
5
{
6
while (1)
7
__label__ a; // { dg-error "not at the beginning" }
8
for (;;)
9
__label__ b; // { dg-error "not at the beginning" }
10
}