pr39228.c: Use dg-add-options instead of dg-options.
authorKaz Kojima <kkojima@gcc.gnu.org>
Wed, 3 Sep 2014 12:27:52 +0000 (12:27 +0000)
committerKaz Kojima <kkojima@gcc.gnu.org>
Wed, 3 Sep 2014 12:27:52 +0000 (12:27 +0000)
* gcc.c-torture/execute/pr39228.c: Use dg-add-options instead
of dg-options.  Add "inline" keyword to test functions.

From-SVN: r214872

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.c-torture/execute/pr39228.c

index 5d1cf61248aaf64d53d1e5be03b8d750ce375110..9886c99968ba0f23851c8ae2e17ee205b0f7ee7d 100644 (file)
@@ -1,3 +1,8 @@
+2014-09-03  Kaz Kojima  <kkojima@gcc.gnu.org>
+
+       * gcc.c-torture/execute/pr39228.c: Use dg-add-options instead
+       of dg-options.  Add "inline" keyword to test functions.
+
 2014-09-03  Marek Polacek  <polacek@redhat.com>
 
        PR c/62024
index dcd8d53f7b5861fc49902c5dca35d20abed68b3d..2bc6006476e0d92fb6da185256a03ab52eb4dcbd 100644 (file)
@@ -1,23 +1,23 @@
-/* { dg-options "-mieee" { target sh*-*-* alpha*-*-* } } */
+/* { dg-add-options ieee } */
 /* { dg-skip-if "No Inf/NaN support" { spu-*-* } "*" "" } */
 
 extern void abort (void);
 
-static int __attribute__((always_inline)) testf (float b)
+static inline int __attribute__((always_inline)) testf (float b)
 {
   float c = 1.01f * b;
 
   return __builtin_isinff (c);
 }
 
-static int __attribute__((always_inline)) test (double b)
+static inline int __attribute__((always_inline)) test (double b)
 {
   double c = 1.01 * b;
 
   return __builtin_isinf (c);
 }
 
-static int __attribute__((always_inline)) testl (long double b)
+static inline int __attribute__((always_inline)) testl (long double b)
 {
   long double c = 1.01L * b;