Commit 813ba481 by Kazu Hirata Committed by Kazu Hirata

20000320-1.c: Use __LONG_LONG_MAX__ and its friends instead of those supplied by limits.h.

	* gcc.c-torture/execute/ieee/20000320-1.c: Use
	__LONG_LONG_MAX__ and its friends instead of those supplied by
	limits.h.

From-SVN: r124306
parent 18452a7d
2007-04-30 Kazu Hirata <kazu@codesourcery.com>
* gcc.c-torture/execute/ieee/20000320-1.c: Use
__LONG_LONG_MAX__ and its friends instead of those supplied by
limits.h.
2007-04-30 Andrew pinski <andrew_pinski@playstation.sony.com> 2007-04-30 Andrew pinski <andrew_pinski@playstation.sony.com>
PR C++/31721 PR C++/31721
#if defined(__mips__) && defined(__sgi__) #if defined(__mips__) && defined(__sgi__)
#include <sys/fpu.h> #include <sys/fpu.h>
#endif /* defined(__mips__) && defined(__sgi__) */ #endif /* defined(__mips__) && defined(__sgi__) */
#include <limits.h> #if __INT_MAX__ != 2147483647 || (__LONG_LONG_MAX__ != 9223372036854775807ll && __LONG_MAX__ != 9223372036854775807ll)
#if UINT_MAX != 4294967295u || (ULONG_LONG_MAX != 18446744073709551615ull && ULONG_MAX != 18446744073709551615ull)
int main(void) { exit (0); } int main(void) { exit (0); }
#else #else
#if ULONG_MAX != 18446744073709551615ull #if __LONG_MAX__ != 9223372036854775807ll
typedef unsigned long long ull; typedef unsigned long long ull;
#else #else
typedef unsigned long ull; typedef unsigned long ull;
......
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