dbxout.c (dbxout_start_new_source_file): Use output_quoted_string for FILENAME.
authorJ"orn Rennecke <amylaar@cygnus.co.uk>
Thu, 23 Oct 1997 12:11:19 +0000 (12:11 +0000)
committerJoern Rennecke <amylaar@gcc.gnu.org>
Thu, 23 Oct 1997 12:11:19 +0000 (13:11 +0100)
* dbxout.c (dbxout_start_new_source_file): Use output_quoted_string
for FILENAME.

From-SVN: r16155

gcc/ChangeLog
gcc/dbxout.c

index d104b6f..e4c250c 100644 (file)
@@ -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.
index a0a9665..79c065b 100644 (file)
@@ -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
 }