From: Jim Wilson Date: Wed, 1 Jun 1994 00:23:08 +0000 (-0700) Subject: (output_source_line): Call xcoffout_source_line. X-Git-Tag: misc/cutover-egcs-0~6534 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b2526fe62130664473daca50df92ad112e861cf7;p=thirdparty%2Fgcc.git (output_source_line): Call xcoffout_source_line. From-SVN: r7409 --- diff --git a/gcc/final.c b/gcc/final.c index 861165625ec6..e2cb53ebd728 100644 --- a/gcc/final.c +++ b/gcc/final.c @@ -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)