* gcc.c-torture/compile/990107-1.c: New test

From-SVN: r24565
This commit is contained in:
Jeffrey A Law 1999-01-07 22:42:52 +00:00 committed by Jeff Law
parent 42b17236df
commit 2c615241f3
2 changed files with 11 additions and 0 deletions

View File

@ -1,3 +1,7 @@
Thu Jan 7 23:39:47 1999 Jeffrey A Law (law@cygnus.com)
* gcc.c-torture/compile/990107-1.c: New test
Wed Jan 6 02:21:59 1999 Jeffrey A Law (law@cygnus.com)
* gcc.c-torture/execute/990106-2.c: New test.

View File

@ -0,0 +1,7 @@
static int
java_double_finite (d)
double d;
{
long long *ip = (long long *) &d;
return (*ip & 0x7ff0000000000000LL ) != 0x7ff0000000000000LL ;
}