mips.c (mips_make_temp_file): Fix thinko in last change.

2001-02-26  Jeffrey Oldham  <oldham@codesourcery.com>

        * mips.c (mips_make_temp_file): Fix thinko in last change.

From-SVN: r40078
This commit is contained in:
Jeffrey Oldham 2001-02-27 01:26:26 +00:00 committed by Zack Weinberg
parent ac4cdf4033
commit 8bb3dc7766
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2001-02-26 Jeffrey Oldham <oldham@codesourcery.com>
* mips.c (mips_make_temp_file): Fix thinko in last change.
2001-02-26 Jason Eckhardt <jle@redhat.com>
* combine.c (known_cond): Do not reverse the condition when

View File

@ -5790,7 +5790,7 @@ mips_make_temp_file ()
FILE *stream;
temp_filename = make_temp_file (0);
stream = fopen (filename, "w+");
stream = fopen (temp_filename, "w+");
if (!stream)
fatal_io_error ("can't open %s", temp_filename);
return stream;