diff options
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/mips/linux.h | 5 |
2 files changed, 9 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 19bbe78..0fde197 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,9 @@ 2001-08-01 H.J. Lu <hjl@gnu.org> + * config/mips/linux.h (ASM_OUTPUT_IDENT): Defined. + +2001-08-01 H.J. Lu <hjl@gnu.org> + * gcc/config/mips/linux.h (ASM_OUTPUT_SOURCE_LINE): Defined. 2001-08-01 Ziemowit Laski <zlaski@apple.com> diff --git a/gcc/config/mips/linux.h b/gcc/config/mips/linux.h index b186e22..d20122c 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); |