]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
(output_source_line): Call xcoffout_source_line.
authorJim Wilson <wilson@gcc.gnu.org>
Wed, 1 Jun 1994 00:23:08 +0000 (17:23 -0700)
committerJim Wilson <wilson@gcc.gnu.org>
Wed, 1 Jun 1994 00:23:08 +0000 (17:23 -0700)
From-SVN: r7409

gcc/final.c

index 861165625ec67af65e865fab6312efbfd3182c8a..e2cb53ebd728113f502370c92f65221e24dbecdd 100644 (file)
@@ -2030,10 +2030,15 @@ output_source_line (file, insn)
        }
 #endif
 
-#if defined (DBX_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO)
-      if (write_symbols == DBX_DEBUG || write_symbols == XCOFF_DEBUG)
+#if defined (DBX_DEBUGGING_INFO)
+      if (write_symbols == DBX_DEBUG)
        dbxout_source_line (file, filename, NOTE_LINE_NUMBER (insn));
-#endif /* DBX_DEBUGGING_INFO || XCOFF_DEBUGGING_INFO */
+#endif
+
+#if defined (XCOFF_DEBUGGING_INFO)
+      if (write_symbols == XCOFF_DEBUG)
+       xcoffout_source_line (file, filename, insn);
+#endif
 
 #ifdef DWARF_DEBUGGING_INFO
       if (write_symbols == DWARF_DEBUG)