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]

Re: Fix mistakes in xm cleanup


Attached is a proposed patch fixing a mistake in your change to
gcc/config/mips/mips.c.  If it is correct, will you please commit it?
It will take several hours to go through the bootstrap and test
process.

Thanks,
Jeffrey D. Oldham
oldham@codesourcery.com
Index: mips.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/config/mips/mips.c,v
retrieving revision 1.110
diff -c -p -r1.110 mips.c
*** mips.c	2001/02/25 17:23:42	1.110
--- mips.c	2001/02/27 00:24:07
*************** mips_make_temp_file ()
*** 5790,5796 ****
    FILE *stream;
  
    temp_filename = make_temp_file (0);
!   stream = fopen (filename, "w+");
    if (!stream)
      fatal_io_error ("can't open %s", temp_filename);
    return stream;
--- 5790,5796 ----
    FILE *stream;
  
    temp_filename = make_temp_file (0);
!   stream = fopen (temp_filename, "w+");
    if (!stream)
      fatal_io_error ("can't open %s", temp_filename);
    return stream;

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