repo.or.cz
/
official-gcc
/
graphite-test-results.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge from mainline (167278:168000).
[official-gcc/graphite-test-results.git]
/
gcc
/
testsuite
/
gcc.dg
/
comp-goto-1.c
blob
66afac87b9f535efd82c89999daf22e75ff09c33
1
/* Test diagnostics for addresses of labels and computed gotos. Test
2
with no special options. */
3
/* Origin: Joseph Myers <joseph@codesourcery.com> */
4
/* { dg-do compile } */
5
/* { dg-options "" } */
6
7
void
8
f
(
void
)
9
{
10
void
*
p
= &&
a
;
11
goto
*
p
;
12
a
: ;
13
}