repo.or.cz
/
official-gcc
/
graphite-test-results.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fix unused warnings.
[official-gcc/graphite-test-results.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
ifcvt-onecmpl-abs-1.c
blob
679e552f8482db43f0401c04249da619fb00cf5d
1
2
extern
void
abort
(
void
);
3
4
__attribute__
((
noinline
))
5
int
foo
(
int
n
)
6
{
7
if
(
n
<
0
)
8
n
= ~
n
;
9
10
return
n
;
11
}
12
13
int
main
(
void
)
14
{
15
if
(
foo
(-
1
) !=
0
)
16
abort
();
17
18
return
0
;
19
}