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
/
20011029-1.c
blob
538b4e4f4bea9fe3646777af3a9e59b6b2841834
1
/* { dg-require-effective-target indirect_jumps } */
2
3
void
foo
(
void
*)
__attribute__
((
noreturn
));
4
5
void
6
bar
(
void
*
x
)
7
{
8
if
(
__builtin_setjmp
(
x
))
9
return
;
10
foo
(
x
);
11
}