From: Richard Sandiford Date: Sun, 8 May 2005 12:06:55 +0000 (+0000) Subject: Use dg-mips-options instead of dg-options. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e956d1824234ec0a9b5cad6c9fa57d3edcbf5ce9;p=gcc.git Use dg-mips-options instead of dg-options. From-SVN: r99391 --- diff --git a/gcc/testsuite/gcc.target/mips/fpcmp-1.c b/gcc/testsuite/gcc.target/mips/fpcmp-1.c index b5d087671fd..144a6d1c186 100644 --- a/gcc/testsuite/gcc.target/mips/fpcmp-1.c +++ b/gcc/testsuite/gcc.target/mips/fpcmp-1.c @@ -1,5 +1,5 @@ /* 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" } } */ diff --git a/gcc/testsuite/gcc.target/mips/fpcmp-2.c b/gcc/testsuite/gcc.target/mips/fpcmp-2.c index 94027a8a091..4a9bbaad7c2 100644 --- a/gcc/testsuite/gcc.target/mips/fpcmp-2.c +++ b/gcc/testsuite/gcc.target/mips/fpcmp-2.c @@ -1,5 +1,5 @@ /* 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" } } */