mirror of git://gcc.gnu.org/git/gcc.git
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
This commit is contained in:
parent
43b7a57780
commit
7078cdb635
|
|
@ -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>
|
2016-08-22 Bernd Edlinger <bernd.edlinger@hotmail.de>
|
||||||
|
|
||||||
PR c/52952
|
PR c/52952
|
||||||
|
|
|
||||||
|
|
@ -11,6 +11,6 @@
|
||||||
int
|
int
|
||||||
main (void)
|
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);
|
exit (0);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -11,6 +11,6 @@
|
||||||
int
|
int
|
||||||
main (void)
|
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);
|
exit (0);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -11,6 +11,6 @@
|
||||||
int
|
int
|
||||||
main (void)
|
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);
|
exit (0);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue