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  }