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
* gcc-interface/trans.c (node_has_volatile_full_access) <N_Identifier>:
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
20050122-2.c
blob
1e297be8cb6ba06091e87c2c75e7583a7f905e0e
1
/* Related to PR 19484. */
2
/* { dg-require-effective-target trampolines } */
3
4
extern
void
foo
(
void
)
__attribute__
((
noreturn
));
5
int
n
;
6
7
void
8
g
(
void
)
9
{
10
__label__ lab
;
11
void
h
(
void
) {
if
(
n
==
2
)
goto
lab
; }
12
void
(*
f1
) (
void
) =
foo
;
13
void
(*
f2
) (
void
) =
h
;
14
15
f2
();
16
if
(
n
)
17
f1
();
18
n
=
1
;
19
lab
:
20
n
++;
21
}