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
* tree-loop-distribution.c (INCLUDE_ALGORITHM): New header file.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr59993.c
blob
57ecdde6938c2c2ab90cf0453a2f42e55e39f228
1
/* { dg-do compile } */
2
/* { dg-require-effective-target indirect_jumps } */
3
4
#include <setjmp.h>
5
6
extern
int
optind
;
7
jmp_buf
jump_buf
;
8
void
foo
(
jmp_buf
,
int
);
9
void
bar
(
char
*);
10
int
11
main
(
int
argc
,
char
**
argv
)
12
{
13
foo
(
jump_buf
,
setjmp
(
jump_buf
));
14
argv
+=
optind
;
15
bar
(
argv
[
1
]);
16
}