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
/
20120615-1.c
blob
6c80d43fe0678b487bb08f3cf84f47df6844473c
1
extern
void
abort
(
void
);
2
3
void
__attribute__
((
noinline
,
noclone
))
4
test1
(
int
i
)
5
{
6
if
(
i
==
12
)
7
return
;
8
if
(
i
!=
17
)
9
{
10
if
(
i
==
15
)
11
return
;
12
abort
();
13
}
14
}
15
16
int
main
() {
test1
(
15
);
return
0
; }