summaryrefslogtreecommitdiff
path: root/gcc/reg-stack.c
diff options
context:
space:
mode:
authorhubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4>2007-03-06 14:02:00 +0000
committerhubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4>2007-03-06 14:02:00 +0000
commitaeca56276abfceb1b854097772d329461773d700 (patch)
treee61667ff022e1482857e07da7eab05028bd0c5df /gcc/reg-stack.c
parentaee612a9858d1aa7685a4301f4c7880d760675f8 (diff)
downloadgcc-aeca56276abfceb1b854097772d329461773d700.tar.gz
* regstack.c (reg_to_stack): When in 64bit PIC mode, we still can load
NANs easilly. git-svn-id: svn+ssh://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
{