2001-02-26 Jeffrey Oldham <oldham@codesourcery.com>
* mips.c (mips_make_temp_file): Fix thinko in last change.
From-SVN: r40078
+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
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;