aboutsummaryrefslogtreecommitdiff
path: root/gcc/reg-stack.c
diff options
context:
space:
mode:
authorJan Hubicka <jh@suse.cz>2007-03-06 14:02:00 +0000
committerJan Hubicka <jh@suse.cz>2007-03-06 14:02:00 +0000
commit5913b3f58426525ed3f342b79fe50536f8084bc3 (patch)
treee61667ff022e1482857e07da7eab05028bd0c5df /gcc/reg-stack.c
parent3f715b9a56fd03e5daec8ebaa8c87c1dd2e805be (diff)
* regstack.c (reg_to_stack): When in 64bit PIC mode, we still can load
NANs easilly. git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@122619 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/reg-stack.c')
-rw-r--r--gcc/reg-stack.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/reg-stack.c b/gcc/reg-stack.c
index f21d833c00b..7a7a0e53cb0 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
{