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.dg/stack-check-5.c: Skip with -fstack-protector.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
ifcvt-fabs-1.c
blob
409bbc4fea080ebe01abab2f0ef6b0e922144752
1
/* { dg-do run } */
2
/* { dg-options "-O" } */
3
/* { dg-options "-O -march=i686" { target { { i?86-*-* x86_64-*-* } && ia32 } } } */
4
5
extern
void
abort
(
void
);
6
7
float
foo
(
float
f
)
8
{
9
if
(
f
<
0.0
f
)
10
f
= -
f
;
11
12
return
f
;
13
}
14
15
int
main
(
void
)
16
{
17
if
(
foo
(-
1.0
f
) !=
1.0
f
)
18
abort
();
19
20
return
0
;
21
}