summaryrefslogtreecommitdiff
path: root/gcc/reg-stack.c
diff options
context:
space:
mode:
authorJan Hubicka <jh@suse.cz>2007-03-06 15:02:00 +0100
committerJan Hubicka <hubicka@gcc.gnu.org>2007-03-06 14:02:00 +0000
commit4e669430fe3291fa26128e18c6083d0b0e61d9a3 (patch)
treee61667ff022e1482857e07da7eab05028bd0c5df /gcc/reg-stack.c
parentdb47a44203735a0d3ea897c2825b796a6c657257 (diff)
downloadgcc-4e669430fe3291fa26128e18c6083d0b0e61d9a3.tar.gz
regstack.c (reg_to_stack): When in 64bit PIC mode, we still can load NANs easilly.
* regstack.c (reg_to_stack): When in 64bit PIC mode, we still can load NANs easilly. From-SVN: r122619
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
{