]> gcc.gnu.org Git - gcc.git/commitdiff
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 d104b6fd7eb925b6bb9e3d06fa933e77c37ff4cf..e4c250c9dee34e584d373caaf83c314c649b5b79 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 a0a9665acab1bb51dda6f700edc2c142a1978b43..79c065b5c29685914be9686fa32ea8a673660af6 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
 }
 
This page took 0.068179 seconds and 5 git commands to generate.