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
PR middle-end/27945
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
20020312-1.c
blob
978401862a4fdee750bbce992863f1197707676f
1
/* This testcase ICEd on alpha because of an unrecognized insn formed
2
by conditional move optimization using an incorrect mode. */
3
/* { dg-do compile } */
4
/* { dg-options "-O -ffast-math" } */
5
6
char
*
7
barf
(
double
x
)
8
{
9
return
(
x
<
0.0
) ?
"foo"
:
"bar"
;
10
}