Commit 14806ff1 by Michael Meissner Committed by Michael Meissner

Remove CYGNUS LOCAL markers

From-SVN: r34009
parent 51becdd6
2000-05-18 Michael Meissner <meissner@redhat.com>
* gcc.c-torture/compile/920501-1.c: Remove CYGNUS LOCAL markers.
* gcc.c-torture/execute/920415-1.c: Ditto.
* gcc.c-torture/execute/920501-1.c: Ditto.
* gcc.c-torture/execute/conversion.c: Ditto.
* gcc.c-torture/execute/cvt-1.c: Ditto.
Thu May 18 16:03:29 2000 Jeffrey A Law (law@cygnus.com)
* gcc.c-torture/compile/20000518-1.c: New test.
......
/* CYGNUS LOCAL -- meissner/no label values */
#ifndef NO_LABEL_VALUES
a(){int**b[]={&&c};c:;}
#else
int x;
#endif
/* END CYGNUS LOCAL -- meissner/no label values */
/* CYGNUS LOCAL -- meissner/no label values */
#ifndef NO_LABEL_VALUES
main(){__label__ l;void*x(){return&&l;}goto*x();abort();return;l:exit(0);}
#else
main(){ exit (0); }
#endif
/* END CYGNUS LOCAL -- meissner/no label values */
/* CYGNUS LOCAL -- meissner/no label values */
#ifdef STACK_SIZE
#define DEPTH ((STACK_SIZE) / 512 + 1)
#else
......@@ -29,4 +28,3 @@ main ()
#endif
exit (0);
}
/* END CYGNUS LOCAL -- meissner/no label values */
......@@ -207,11 +207,9 @@ test_float_to_integer()
if (f2u((float) ~((~0U) >> 1)) != ~((~0U) >> 1)) /* 0x80000000 */
abort();
/* CYGNUS LOCAL -- amylaar/32bit doubles */
/* These tests require double precision, so for hosts that don't offer
that much precision, just ignore these test. */
if (sizeof (double) >= 8) {
/* END CYGNUS LOCAL -- amylaar/32bit doubles */
if (d2u(0.0) != 0)
abort();
if (d2u(0.999) != 0)
......@@ -226,10 +224,7 @@ test_float_to_integer()
abort();
if (d2u((double) ~((~0U) >> 1)) != ~((~0U) >> 1)) /* 0x80000000 */
abort();
/* CYGNUS LOCAL -- amylaar/32bit doubles */
}
/* END CYGNUS LOCAL -- amylaar/32bit doubles */
if (f2s(0.0) != 0)
abort();
......@@ -248,11 +243,9 @@ test_float_to_integer()
if (f2s((float)(int)~((~0U) >> 1)) != (int)~((~0U) >> 1)) /* 0x80000000 */
abort();
/* CYGNUS LOCAL -- amylaar/32bit doubles */
/* These tests require double precision, so for hosts that don't offer
that much precision, just ignore these test. */
if (sizeof (double) >= 8) {
/* END CYGNUS LOCAL -- amylaar/32bit doubles */
if (d2s(0.0) != 0)
abort();
if (d2s(0.999) != 0)
......@@ -271,9 +264,7 @@ test_float_to_integer()
abort();
if (d2s((double)(int)~((~0U) >> 1)) != (int)~((~0U) >> 1)) /* 0x80000000 */
abort();
/* CYGNUS LOCAL -- amylaar/32bit doubles */
}
/* END CYGNUS LOCAL -- amylaar/32bit doubles */
}
#if __GNUC__
......
/* CYGNUS LOCAL -- meissner/16 bit ints */
static inline long
g1 (double x)
{
......@@ -27,4 +26,3 @@ main ()
abort ();
exit (0);
}
/* END CYGNUS LOCAL -- meissner/16 bit ints */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment