Commit 9e2ceea0 by Uros Bizjak Committed by Uros Bizjak

ieee.exp (additional_flags): Add -fno-inline.

	* gcc.c-torture/execute/ieee/ieee.exp (additional_flags):
	Add -fno-inline.
	* gcc.c-torture/execute/ieee/pr36332.c (foo): Remove attributes.
	* gcc.c-torture/execute/ieee/pr30704.c (f1): Ditto.
	(f2): Ditto.

From-SVN: r151915
parent 473ebbc5
2009-09-21 Uros Bizjak <ubizjak@gmail.com>
* gcc.c-torture/execute/ieee/ieee.exp (additional_flags):
Add -fno-inline.
* gcc.c-torture/execute/ieee/pr36332.c (foo): Remove attributes.
* gcc.c-torture/execute/ieee/pr30704.c (f1): Ditto.
(f2): Ditto.
2009-09-20 H.J. Lu <hongjiu.lu@intel.com>
* gcc.dg/ipa/ipa-sra-1.c (dg-options): Add -fipa-sra.
......
......@@ -37,7 +37,7 @@ if $tracelevel then {
torture-init
set-torture-options $C_TORTURE_OPTIONS
set additional_flags ""
set additional_flags "-fno-inline"
# We must use -ffloat-store/-mieee to ensure that excess precision on some
# machines does not cause problems
......
......@@ -6,7 +6,6 @@ extern int memcmp (const void *, const void *, size_t);
extern void *memcpy (void *, const void *, size_t);
long long
__attribute__((noinline))
f1 (void)
{
long long t;
......@@ -16,7 +15,6 @@ f1 (void)
}
double
__attribute__((noinline))
f2 (void)
{
long long t = 0x000fedcba9876543LL;
......
/* PR target/36332 */
int __attribute__((noinline, used))
int
foo (long double ld)
{
return ld == __builtin_infl ();
......
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