From 7078cdb635b230b3d599172004dfaf1354457306 Mon Sep 17 00:00:00 2001 From: Joseph Myers Date: Mon, 22 Aug 2016 11:45:23 +0100 Subject: [PATCH] Correct type names in fp-int-convert-float*x-timode.c tests. 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 | 7 +++++++ .../gcc.dg/torture/fp-int-convert-float128x-timode.c | 2 +- .../gcc.dg/torture/fp-int-convert-float32x-timode.c | 2 +- .../gcc.dg/torture/fp-int-convert-float64x-timode.c | 2 +- 4 files changed, 10 insertions(+), 3 deletions(-) diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 6cbb8807a16..6d1f7fd703b 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,10 @@ +2016-08-22 Joseph Myers + + * 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 PR c/52952 diff --git a/gcc/testsuite/gcc.dg/torture/fp-int-convert-float128x-timode.c b/gcc/testsuite/gcc.dg/torture/fp-int-convert-float128x-timode.c index 682dcdc82f2..410370e280d 100644 --- a/gcc/testsuite/gcc.dg/torture/fp-int-convert-float128x-timode.c +++ b/gcc/testsuite/gcc.dg/torture/fp-int-convert-float128x-timode.c @@ -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); } diff --git a/gcc/testsuite/gcc.dg/torture/fp-int-convert-float32x-timode.c b/gcc/testsuite/gcc.dg/torture/fp-int-convert-float32x-timode.c index f08bd0073b0..c3d3fa9ff7d 100644 --- a/gcc/testsuite/gcc.dg/torture/fp-int-convert-float32x-timode.c +++ b/gcc/testsuite/gcc.dg/torture/fp-int-convert-float32x-timode.c @@ -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); } diff --git a/gcc/testsuite/gcc.dg/torture/fp-int-convert-float64x-timode.c b/gcc/testsuite/gcc.dg/torture/fp-int-convert-float64x-timode.c index 7b06a804226..7d31868481f 100644 --- a/gcc/testsuite/gcc.dg/torture/fp-int-convert-float64x-timode.c +++ b/gcc/testsuite/gcc.dg/torture/fp-int-convert-float64x-timode.c @@ -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); } -- 2.30.2