Commit 8bb3dc77 by Jeffrey Oldham Committed by Zack Weinberg

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
parent ac4cdf40
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
......
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment