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
* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.old-deja
/
g++.other
/
goto1.C
blob
9a9ba8be7d234275e977f04871b4e6a8725fadba
1
// { dg-do assemble }
2
// Origin: Mark Mitchell <mark@codesourcery.com>
3
4
struct S
5
{
6
S ();
7
~S ();
8
};
9
10
void f ()
11
{
12
{
13
S s1; // { dg-message "" } skips initialization
14
15
t: // { dg-error "" } jump to label
16
S s2;
17
;
18
}
19
20
goto t; // { dg-message "" } from here
21
}