From: H.J. Lu Date: Wed, 1 Aug 2001 17:24:23 +0000 (+0000) Subject: linux.h (ASM_OUTPUT_IDENT): Defined. X-Git-Tag: prereleases/libstdc++-3.0.95~2927 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2a25b23f7fc4970eb1760f5a3001e626720fa844;p=thirdparty%2Fgcc.git linux.h (ASM_OUTPUT_IDENT): Defined. 2001-08-01 H.J. Lu * config/mips/linux.h (ASM_OUTPUT_IDENT): Defined. From-SVN: r44544 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 19bbe780b06e..0fde1977997e 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2001-08-01 H.J. Lu + + * config/mips/linux.h (ASM_OUTPUT_IDENT): Defined. + 2001-08-01 H.J. Lu * gcc/config/mips/linux.h (ASM_OUTPUT_SOURCE_LINE): Defined. diff --git a/gcc/config/mips/linux.h b/gcc/config/mips/linux.h index b186e225db8d..d20122c30306 100644 --- a/gcc/config/mips/linux.h +++ b/gcc/config/mips/linux.h @@ -248,3 +248,8 @@ while (0) /* Tell function_prologue in mips.c that we have already output the .ent/.end pseudo-ops. */ #define FUNCTION_NAME_ALREADY_DECLARED + +/* Output #ident as a .ident. */ +#undef ASM_OUTPUT_IDENT +#define ASM_OUTPUT_IDENT(FILE, NAME) \ + fprintf (FILE, "\t%s\t\"%s\"\n", IDENT_ASM_OP, NAME);