Commit a29dd8dd by Prathamesh Kulkarni Committed by Prathamesh Kulkarni

cse.c (cse_dump_path): s/dump_file/f.

2019-05-23  Prathamesh Kulkarni  <prathamesh.kulkarni@linaro.org>

	* cse.c (cse_dump_path): s/dump_file/f.

From-SVN: r271539
parent 07bcb2b4
2019-05-23 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
* cse.c (cse_dump_path): s/dump_file/f.
2019-05-22 David Malcolm <dmalcolm@redhat.com> 2019-05-22 David Malcolm <dmalcolm@redhat.com>
PR c++/90462 PR c++/90462
......
...@@ -6512,7 +6512,7 @@ cse_dump_path (struct cse_basic_block_data *data, int nsets, FILE *f) ...@@ -6512,7 +6512,7 @@ cse_dump_path (struct cse_basic_block_data *data, int nsets, FILE *f)
fprintf (f, ";; Following path with %d sets: ", nsets); fprintf (f, ";; Following path with %d sets: ", nsets);
for (path_entry = 0; path_entry < data->path_size; path_entry++) for (path_entry = 0; path_entry < data->path_size; path_entry++)
fprintf (f, "%d ", (data->path[path_entry].bb)->index); fprintf (f, "%d ", (data->path[path_entry].bb)->index);
fputc ('\n', dump_file); fputc ('\n', f);
fflush (f); fflush (f);
} }
......
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