2
0
mirror of git://gcc.gnu.org/git/gcc.git synced 2025-03-16 00:31:26 +08:00

* gcc.c-torture/execute/ieee/mzero3.c: New test.

From-SVN: r57331
This commit is contained in:
Hans-Peter Nilsson 2002-09-20 03:04:15 +00:00 committed by Hans-Peter Nilsson
parent f08b7eee21
commit e7a35dcc29
2 changed files with 53 additions and 0 deletions
gcc/testsuite
ChangeLog
gcc.c-torture/execute/ieee

@ -1,5 +1,7 @@
2002-09-20 Hans-Peter Nilsson <hp@bitrange.com>
* gcc.c-torture/execute/ieee/mzero3.c: New test.
* lib/scanasm.exp (scan-assembler-dem, scan-assembler-dem-not):
Adjust for c++filt moved to binutils. Remove spurious duplicate
setting of cxxfilt.

@ -0,0 +1,51 @@
/* Copyright (C) 2002 Free Software Foundation.
by Hans-Peter Nilsson <hp@bitrange.com>, derived from mzero2.c
In the MMIX port, negdf2 was bogusly expanding -x into 0 - x. */
double nzerod = -0.0;
float nzerof = -0.0;
double zerod = 0.0;
float zerof = 0.0;
void expectd (double, double);
void expectf (float, float);
double negd (double);
float negf (float);
main ()
{
expectd (negd (zerod), nzerod);
expectf (negf (zerof), nzerof);
expectd (negd (nzerod), zerod);
expectf (negf (nzerof), zerof);
exit (0);
}
void
expectd (double value, double expected)
{
if (value != expected
|| memcmp ((void *)&value, (void *) &expected, sizeof (double)) != 0)
abort ();
}
void
expectf (float value, float expected)
{
if (value != expected
|| memcmp ((void *)&value, (void *) &expected, sizeof (float)) != 0)
abort ();
}
double
negd (double v)
{
return -v;
}
float
negf (float v)
{
return -v;
}