aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorH.J. Lu <hjl@gnu.org>2001-08-01 17:24:23 +0000
committerH.J. Lu <hjl@gcc.gnu.org>2001-08-01 10:24:23 -0700
commit2a25b23f7fc4970eb1760f5a3001e626720fa844 (patch)
tree0bffcd1d61446598e7605d5c70dc821e9c442883
parenta8329479d3ce33634b5077ae336ab45a8747dd44 (diff)
downloadgcc-2a25b23f7fc4970eb1760f5a3001e626720fa844.zip
gcc-2a25b23f7fc4970eb1760f5a3001e626720fa844.tar.gz
gcc-2a25b23f7fc4970eb1760f5a3001e626720fa844.tar.bz2
linux.h (ASM_OUTPUT_IDENT): Defined.
2001-08-01 H.J. Lu <hjl@gnu.org> * config/mips/linux.h (ASM_OUTPUT_IDENT): Defined. From-SVN: r44544
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/config/mips/linux.h5
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);