Commit f245e30e by David Edelsohn Committed by David Edelsohn

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
parent bd937d50
2001-05-25 David Edelsohn <edelsohn@gnu.org>
* 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.
2001-05-25 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE> 2001-05-25 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
* fixinc/inclhack.def (strict_ansi_not, strict_ansi_not_ctd, * fixinc/inclhack.def (strict_ansi_not, strict_ansi_not_ctd,
......
...@@ -71,7 +71,7 @@ Boston, MA 02111-1307, USA. */ ...@@ -71,7 +71,7 @@ Boston, MA 02111-1307, USA. */
/* #define ASM_OUTPUT_DESTRUCTOR(file, name) */ /* #define ASM_OUTPUT_DESTRUCTOR(file, name) */
/* The prefix to add to user-visible assembler symbols. */ /* The prefix to add to user-visible assembler symbols. */
#define USER_LABEL_PREFIX "." #define USER_LABEL_PREFIX ""
/* Don't turn -B into -L if the argument specifies a relative file name. */ /* Don't turn -B into -L if the argument specifies a relative file name. */
#define RELATIVE_PREFIX_NOT_LINKDIR #define RELATIVE_PREFIX_NOT_LINKDIR
...@@ -487,12 +487,6 @@ toc_section () \ ...@@ -487,12 +487,6 @@ toc_section () \
#define ASM_OUTPUT_SYMBOL_REF(FILE, SYM) \ #define ASM_OUTPUT_SYMBOL_REF(FILE, SYM) \
rs6000_output_symbol_ref (FILE, SYM) rs6000_output_symbol_ref (FILE, SYM)
/* This is how to output a reference to a user-level label named NAME.
`assemble_name' uses this. */
#define ASM_OUTPUT_LABELREF(FILE,NAME) \
fputs (NAME, FILE)
/* This says how to output an external. */ /* This says how to output an external. */
#define ASM_OUTPUT_EXTERNAL(FILE, DECL, NAME) \ #define ASM_OUTPUT_EXTERNAL(FILE, DECL, NAME) \
......
...@@ -173,8 +173,13 @@ extern const char *xcoff_lastfile; ...@@ -173,8 +173,13 @@ extern const char *xcoff_lastfile;
} }
/* .stabx has the type in a different place. */ /* .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) \ #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. */ /* Do not break .stabs pseudos into continuations. */
#define DBX_CONTIN_LENGTH 0 #define DBX_CONTIN_LENGTH 0
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment