diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 60b953038fa..55c90f403d4 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2007-03-06 Jan Hubicka + + * regstack.c (reg_to_stack): When in 64bit PIC mode, we still can load + NANs easilly. + 2007-03-06 Richard Sandiford * configure.ac: Allow tm_file to contain build-directory files. 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 {