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
This commit is contained in:
parent
7b4f18a381
commit
c401498bbf
2 changed files with 8 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
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)
|
||||
|
||||
* toplev.c (flag_exceptions): Default value is 2.
|
||||
|
|
|
@ -501,7 +501,9 @@ dbxout_start_new_source_file (filename)
|
|||
n->file_number = next_file_number++;
|
||||
n->next_type_number = 1;
|
||||
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
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue