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
2016-12-21 Vladimir Makarov <vmakarov@redhat.com>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
complex-6.c
blob
9724bf278635b9845519e12d299b37b8c48abd15
1
/* PR tree-opt/35737 */
2
/* { dg-require-effective-target indirect_jumps } */
3
4
long
buf
[
10
];
5
6
int
foo
()
7
{
8
__complex__
int
i
=
0
;
9
10
if
(
__builtin_setjmp
(
buf
))
11
{
12
i
=
1
;
13
bar
();
14
}
15
16
return
i
==
0
;
17
}
18