This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Patch for IA64 RFmode constants



2008-06-12 Steve Ellcey <sje@cup.hp.com>

* config/ia64/ia64.c (ia64_legitimate_constant_p

ChangeLog nit, the correct function is ia64_cannot_force_const_mem.



Index: config/ia64/ia64.c =================================================================== --- config/ia64/ia64.c (revision 136691) +++ config/ia64/ia64.c (working copy) @@ -781,6 +781,8 @@ ia64_legitimate_constant_p (rtx x) static bool ia64_cannot_force_const_mem (rtx x) { + if (GET_MODE (x) == RFmode) + return true; return tls_symbolic_operand_type (x) != 0; }

Paolo



Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]