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
Skip analyzer strndup test on hppa*-*-hpux*
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr109274.c
blob
5dbc0232f8ec97cd3e2387534b13291cb344691f
1
/* PR tree-optimization/109274 */
2
/* { dg-do compile } */
3
/* { dg-options "-O2 " } */
4
5
float
a
,
b
,
c
;
6
int
d
;
7
float
bar
(
void
);
8
9
void
10
foo
(
void
)
11
{
12
a
=
0
* -(
2.0
f
*
c
);
13
d
=
a
!=
a
?
0
:
bar
();
14
b
=
c
;
15
}
16