diff options
author | David Edelsohn <edelsohn@gnu.org> | 2001-05-25 22:08:30 +0000 |
---|---|---|
committer | David Edelsohn <dje@gcc.gnu.org> | 2001-05-25 18:08:30 -0400 |
commit | f245e30e856e5868d579d789f063d6fef76c58ca (patch) | |
tree | a762023462266c93ee2ed050074a3e0dd0bda2ea /gcc/xcoffout.h | |
parent | bd937d500d491f97516cb13ba52e35aed766f6dc (diff) | |
download | gcc-f245e30e856e5868d579d789f063d6fef76c58ca.tar.gz |
xcoffout.h (DBX_OUTPUT_GCC_MARKER): Do not emit any marker.
* 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.
From-SVN: r42598
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 |