From 94b0e28f26647e1de885a4cda56c0fc3480850bf Mon Sep 17 00:00:00 2001 From: dje Date: Fri, 25 May 2001 22:08:30 +0000 Subject: * xcoffout.h (DBX_OUTPUT_GCC_MARKER): Do not emit any marker. * config/rs6000/aix.h (USER_LABEL_PREFIX): AIX symbols do not have any prefix. (ASM_OUTPUT_LABELREF): Delete. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@42598 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/xcoffout.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'gcc/xcoffout.h') diff --git a/gcc/xcoffout.h b/gcc/xcoffout.h index e1c3e89298a..d44fad7d588 100644 --- a/gcc/xcoffout.h +++ b/gcc/xcoffout.h @@ -173,8 +173,13 @@ extern const char *xcoff_lastfile; } /* .stabx has the type in a different place. */ +#if 0 /* Do not emit any marker for XCOFF until assembler allows XFT_CV. */ #define DBX_OUTPUT_GCC_MARKER(FILE) \ - fprintf ((FILE), "%s\"%s\",0,%d,0\n", ASM_STABS_OP, STABS_GCC_MARKER, N_OPT) + fprintf ((FILE), "%s\"%s\",0,%d,0\n", ASM_STABS_OP, STABS_GCC_MARKER, \ + stab_to_sclass (N_GSYM)) +#else +#define DBX_OUTPUT_GCC_MARKER(FILE) +#endif /* Do not break .stabs pseudos into continuations. */ #define DBX_CONTIN_LENGTH 0 -- cgit v1.2.1