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]: Fix PR middle-end/56382 -- Only move MODE_COMPLEX_FLOAT by parts if we can create pseudos


On 30-Aug-13, at 6:38 AM, Eric Botcazou wrote:

Let's avoid trying to do something general since this seems to be really a
corner case.  Can't we simply deal with hard registers specially?

 /* Move floating point as parts if splitting is easy.  */
 if (GET_MODE_CLASS (mode) == MODE_COMPLEX_FLOAT
&& optab_handler (mov_optab, GET_MODE_INNER (mode)) != CODE_FOR_nothing
     && !(REG_P (x)
          && HARD_REGISTER_P (x)
          && hard_regno_nregs[REGNO(x)][mode] == 1)
     && !(REG_P (y)
          && HARD_REGISTER_P (y)
          && hard_regno_nregs[REGNO(y)][mode] == 1))
   try_int = false;

Eric, your patch works for me. Tested on hppa2.0w-hp-hpux11.11 and hppa64-hp-hpux11.11.

Dave
--
John David Anglin	dave.anglin@bell.net


Attachment: expr.c.d.2.txt
Description: Text document


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