aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/reg-stack.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 60b9530..55c90f4 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2007-03-06 Jan Hubicka <jh@suse.cz>
+
+ * regstack.c (reg_to_stack): When in 64bit PIC mode, we still can load
+ NANs easilly.
+
2007-03-06 Richard Sandiford <richard@codesourcery.com>
* configure.ac: Allow tm_file to contain build-directory files.
diff --git a/gcc/reg-stack.c b/gcc/reg-stack.c
index f21d833..7a7a0e5 100644
--- a/gcc/reg-stack.c
+++ b/gcc/reg-stack.c
@@ -3141,7 +3141,7 @@ reg_to_stack (void)
the PIC register hasn't been set up. In that case, fall back
on zero, which we can get from `ldz'. */
- if (flag_pic)
+ if (flag_pic && !TARGET_64BIT)
not_a_num = CONST0_RTX (SFmode);
else
{