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
* expmed.c (flip_storage_order): Deal with complex modes specially.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
vrp-2.c
blob
69ed3e702810fd350167b962682f56c4f7add154
1
extern
void
abort
();
2
extern
void
exit
(
int
);
3
4
int
f
(
int
a
) {
5
if
(
a
!=
2
) {
6
a
=
a
>
0
?
a
: -
a
;
7
if
(
a
==
2
)
8
return
0
;
9
return
1
;
10
}
11
return
1
;
12
}
13
14
int
main
(
int
argc
,
char
*
argv
[]) {
15
if
(
f
(-
2
))
16
abort
();
17
exit
(
0
);
18
}
19