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]

Fix to last change


This fixes an error in my last change which I was told causes a bootstrap
problem on ia32.

Tue Jul  3 22:33:15 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>

	* explow.c (plus_constant_wide): Reinitialize Y for restart.

*** explow.c	2001/07/03 19:44:05	1.65
--- explow.c	2001/07/04 02:28:20
*************** plus_constant_wide (x, c)
*** 79,83 ****
  {
    register RTX_CODE code;
!   rtx y = x;
    register enum machine_mode mode;
    register rtx tem;
--- 79,83 ----
  {
    register RTX_CODE code;
!   rtx y;
    register enum machine_mode mode;
    register rtx tem;
*************** plus_constant_wide (x, c)
*** 91,94 ****
--- 91,96 ----
    code = GET_CODE (x);
    mode = GET_MODE (x);
+   y = x;
+ 
    switch (code)
      {


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