Commit e956d182 by Richard Sandiford

Use dg-mips-options instead of dg-options.

From-SVN: r99391
parent a0cd568f
/* We used to use c.lt.fmt instead of c.ule.fmt here. */
/* { dg-options "-mhard-float -O2" } */
/* { dg-mips-options "-mhard-float -O2" } */
int f1 (float x, float y) { return __builtin_isless (x, y); }
int f2 (double x, double y) { return __builtin_isless (x, y); }
/* { dg-final { scan-assembler "c\\.ule\\.s" } } */
......
/* We used to use c.le.fmt instead of c.ult.fmt here. */
/* { dg-options "-mhard-float -O2" } */
/* { dg-mips-options "-mhard-float -O2" } */
int f1 (float x, float y) { return __builtin_islessequal (x, y); }
int f2 (double x, double y) { return __builtin_islessequal (x, y); }
/* { dg-final { scan-assembler "c\\.ult\\.s" } } */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment