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.target/i386/mpx/hard-reg-1-nov.c (mpx_test): Use "esp"
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
pr54937.c
blob
13dae6063f975986aa52634d8a2f5726b742ffb2
1
2
void
exit
(
int
);
3
void
abort
(
void
);
4
int
a
[
1
];
5
void
(*
terminate_me
)(
int
);
6
7
__attribute__
((
noinline
,
noclone
))
8
t
(
int
c
)
9
{
int
i
;
10
for
(
i
=
0
;
i
<
c
;
i
++)
11
{
12
if
(
i
)
13
terminate_me
(
0
);
14
a
[
i
]=
0
;
15
}
16
}
17
main
()
18
{
19
terminate_me
=
exit
;
20
t
(
100
);
21
abort
();
22
}