OSDN Git Service

* tree-loop-linear.c (try_interchange_loops): Compare memory access
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / 20020312-1.c
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 }