Commit c401498b by J"orn Rennecke Committed by Joern Rennecke

dbxout.c (dbxout_start_new_source_file): Use output_quoted_string for FILENAME.

	* dbxout.c (dbxout_start_new_source_file): Use output_quoted_string
	for FILENAME.

From-SVN: r16155
parent 7b4f18a3
Thu Oct 23 08:03:59 1997 J"orn Rennecke <amylaar@cygnus.co.uk>
* dbxout.c (dbxout_start_new_source_file): Use output_quoted_string
for FILENAME.
Wed Oct 22 00:34:12 1997 Jeffrey A Law (law@cygnus.com) Wed Oct 22 00:34:12 1997 Jeffrey A Law (law@cygnus.com)
* toplev.c (flag_exceptions): Default value is 2. * toplev.c (flag_exceptions): Default value is 2.
......
...@@ -501,7 +501,9 @@ dbxout_start_new_source_file (filename) ...@@ -501,7 +501,9 @@ dbxout_start_new_source_file (filename)
n->file_number = next_file_number++; n->file_number = next_file_number++;
n->next_type_number = 1; n->next_type_number = 1;
current_file = n; current_file = n;
fprintf (asmfile, "%s \"%s\",%d,0,0,0\n", ASM_STABS_OP, filename, N_BINCL); fprintf (asmfile, "%s ", ASM_STABS_OP);
output_quoted_string (asmfile, filename);
fprintf (asmfile, ",%d,0,0,0\n", N_BINCL);
#endif #endif
} }
......
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