Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/gnu/dist/gcc/config/arm Fix ASM_OUTPUT_IDENT macro to emit a...



details:   https://anonhg.NetBSD.org/src/rev/aaa81fc79abc
branches:  trunk
changeset: 472266:aaa81fc79abc
user:      mark <mark%NetBSD.org@localhost>
date:      Mon Apr 26 07:04:08 1999 +0000

description:
Fix ASM_OUTPUT_IDENT macro to emit a suitable .ident for gas.

diffstat:

 gnu/dist/gcc/config/arm/netbsd.h |  5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)

diffs (15 lines):

diff -r 82cf0871cca7 -r aaa81fc79abc gnu/dist/gcc/config/arm/netbsd.h
--- a/gnu/dist/gcc/config/arm/netbsd.h  Mon Apr 26 06:10:36 1999 +0000
+++ b/gnu/dist/gcc/config/arm/netbsd.h  Mon Apr 26 07:04:08 1999 +0000
@@ -45,6 +45,11 @@
 
 #include <netbsd.h>
 
+/* NetBSD uses gas so we want to use .ident */
+#undef ASM_OUTPUT_IDENT
+#define ASM_OUTPUT_IDENT(STREAM,STRING) \
+  fprintf (STREAM,"\t.ident \"%s\"\n",STRING)
+
 /* On the ARM `@' introduces a comment, so we must use something else
    for .type directives.  Most NetBSD platforms use %, but we use #
    because of some legacy assemblers.  */



Home | Main Index | Thread Index | Old Index