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]

PPC enable checking fix


Hi,
I am going to install this as obvious once i686 testing finishes.
Found during enable_checking bootstrap - we call note_stores
on NOTEs.

Honza

Tue Aug  7 16:52:54 CEST 2001  Jan Hubicka  <jh@suse.cz>

	* rtlanal.c (find_first_parameter_load): Cann note_stores
	only on the instructions.

Index: rtlanal.c
===================================================================
RCS file: /cvs/gcc/egcs/gcc/rtlanal.c,v
retrieving revision 1.105
diff -c -3 -p -r1.105 rtlanal.c
*** rtlanal.c	2001/08/03 08:32:44	1.105
--- rtlanal.c	2001/08/07 14:54:02
*************** find_first_parameter_load (call_insn, bo
*** 2862,2868 ****
  	  break;
  	}
  
!       note_stores (PATTERN (before), parms_set, &parm);
      }
    return before;
  }
--- 2862,2869 ----
  	  break;
  	}
  
!       if (INSN_P (before))
!         note_stores (PATTERN (before), parms_set, &parm);
      }
    return before;
  }


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