diff options
author | Brendan Kehoe <brendan@gcc.gnu.org> | 1993-06-22 13:56:40 -0400 |
---|---|---|
committer | Brendan Kehoe <brendan@gcc.gnu.org> | 1993-06-22 13:56:40 -0400 |
commit | e5301904b9ac3192275b049547a2688926c41ba6 (patch) | |
tree | f833fb02b52acfc90a3772daec33c80d395ba774 | |
parent | f537a5c50ff2883952bb0befc2e0a5110fdc7029 (diff) | |
download | gcc-e5301904b9ac3192275b049547a2688926c41ba6.zip gcc-e5301904b9ac3192275b049547a2688926c41ba6.tar.gz gcc-e5301904b9ac3192275b049547a2688926c41ba6.tar.bz2 |
toplev.c (report_error_function): Change format of the included-file stack to be more readable.
* toplev.c (report_error_function): Change format of the
included-file stack to be more readable.
* cccp.c (print_containing_files): Likewise.
* toplev.c (report_error_function): Change format of the
included-file stack to be more readable.
* cccp.c (print_containing_files): Likewise.
From-SVN: r4709
-rw-r--r-- | gcc/toplev.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/toplev.c b/gcc/toplev.c index 1e33806..5689e6c 100644 --- a/gcc/toplev.c +++ b/gcc/toplev.c @@ -1002,7 +1002,7 @@ report_error_function (file) { fprintf (stderr, " from %s:%d", p->name, p->line); if (p->next) - fprintf (stderr, ","); + fprintf (stderr, ",\n "); } fprintf (stderr, ":\n"); last_error_tick = input_file_stack_tick; |