Correct type names in fp-int-convert-float*x-timode.c tests.
authorJoseph Myers <joseph@codesourcery.com>
Mon, 22 Aug 2016 10:45:23 +0000 (11:45 +0100)
committerJoseph Myers <jsm28@gcc.gnu.org>
Mon, 22 Aug 2016 10:45:23 +0000 (11:45 +0100)
gcc/testsuite:
* gcc.dg/torture/fp-int-convert-float128x-timode.c,
gcc.dg/torture/fp-int-convert-float32x-timode.c,
gcc.dg/torture/fp-int-convert-float64x-timode.c: Correct type
names in calls to TEST_I_F.

From-SVN: r239655

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/torture/fp-int-convert-float128x-timode.c
gcc/testsuite/gcc.dg/torture/fp-int-convert-float32x-timode.c
gcc/testsuite/gcc.dg/torture/fp-int-convert-float64x-timode.c

index 6cbb8807a16d6899d895f31b989f01461c7f7e16..6d1f7fd703bb8b7e248611547d6370fef045a2ab 100644 (file)
@@ -1,3 +1,10 @@
+2016-08-22  Joseph Myers  <joseph@codesourcery.com>
+
+       * gcc.dg/torture/fp-int-convert-float128x-timode.c,
+       gcc.dg/torture/fp-int-convert-float32x-timode.c,
+       gcc.dg/torture/fp-int-convert-float64x-timode.c: Correct type
+       names in calls to TEST_I_F.
+
 2016-08-22  Bernd Edlinger  <bernd.edlinger@hotmail.de>
 
        PR c/52952
index 682dcdc82f26d9701abad9a54c751a71481319fc..410370e280d2ea69490d5a96d9fbb4d0adeadb00 100644 (file)
@@ -11,6 +11,6 @@
 int
 main (void)
 {
-  TEST_I_F(TItype, UTItype, _Float128, FLT128X_MANT_DIG, FLT128X_MAX_EXP);
+  TEST_I_F(TItype, UTItype, _Float128x, FLT128X_MANT_DIG, FLT128X_MAX_EXP);
   exit (0);
 }
index f08bd0073b0d51a81e5c078256ebc2b3d68e4667..c3d3fa9ff7d9fb15f2191116bfe86d86a49a9a52 100644 (file)
@@ -11,6 +11,6 @@
 int
 main (void)
 {
-  TEST_I_F(TItype, UTItype, _Float32, FLT32X_MANT_DIG, FLT32X_MAX_EXP);
+  TEST_I_F(TItype, UTItype, _Float32x, FLT32X_MANT_DIG, FLT32X_MAX_EXP);
   exit (0);
 }
index 7b06a80422697d37d6c77d7cb6f1ab297c757566..7d31868481f46a28291c828e1216a259c7e3f442 100644 (file)
@@ -11,6 +11,6 @@
 int
 main (void)
 {
-  TEST_I_F(TItype, UTItype, _Float64, FLT64X_MANT_DIG, FLT64X_MAX_EXP);
+  TEST_I_F(TItype, UTItype, _Float64x, FLT64X_MANT_DIG, FLT64X_MAX_EXP);
   exit (0);
 }