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 note_stores


On Wed, 27 Oct 1999 13:12:07 -0700, Mark Mitchell wrote:

> Index: rtlanal.c
> ===================================================================
> RCS file: /cvs/gcc/egcs/gcc/rtlanal.c,v
> retrieving revision 1.43
> diff -c -p -r1.43 rtlanal.c
> *** rtlanal.c   1999/10/20 14:04:01     1.43
> --- rtlanal.c   1999/10/27 18:56:57
[snip]
> *************** rtx_equal_p (x, y)
> *** 1184,1192 ****
>     the SUBREG will be passed.  */
>
>   void
> ! note_stores (x, fun)
>        register rtx x;
> !      void (*fun) PROTO ((rtx, rtx));
>   {
>     if ((GET_CODE (x) == SET || GET_CODE (x) == CLOBBER))
>       {
> --- 1186,1195 ----
>     the SUBREG will be passed.  */
>
>   void
> ! note_stores (x, fun, data)
>        register rtx x;
> !      void (*fun) PROTO ((rtx, rtx, void *));
> !      void *data;
>   {
>     if ((GET_CODE (x) == SET || GET_CODE (x) == CLOBBER))
>       {

   The comment above note_stores() should be updated to mention the new
parameter.

-- 
Rask Ingemann Lambertsen


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