diff options
author | dje <dje@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-05-25 22:08:30 +0000 |
---|---|---|
committer | dje <dje@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-05-25 22:08:30 +0000 |
commit | 94b0e28f26647e1de885a4cda56c0fc3480850bf (patch) | |
tree | a762023462266c93ee2ed050074a3e0dd0bda2ea /gcc/xcoffout.h | |
parent | 031d710dd8d40bd8186cbd84fa2df3e7f74d176d (diff) | |
download | gcc-94b0e28f26647e1de885a4cda56c0fc3480850bf.tar.gz |
* 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
Diffstat (limited to 'gcc/xcoffout.h')
-rw-r--r-- | gcc/xcoffout.h | 7 |
1 files changed, 6 insertions, 1 deletions
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 |