From c14f2655196e2279377f0f29664a423187ab1491 Mon Sep 17 00:00:00 2001 From: Richard Stallman Date: Tue, 16 Feb 1993 19:35:31 +0000 Subject: [PATCH] (ASM_OUTPUT_IDENT, IDENT_ASM_OP): Defined. From-SVN: r3477 --- gcc/config/sparc/sparc.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/gcc/config/sparc/sparc.h b/gcc/config/sparc/sparc.h index 8a1e93771df..60e7cc28d5a 100644 --- a/gcc/config/sparc/sparc.h +++ b/gcc/config/sparc/sparc.h @@ -1698,6 +1698,13 @@ do { \ ( (OUTPUT) = (char *) alloca (strlen ((NAME)) + 10), \ sprintf ((OUTPUT), "%s.%d", (NAME), (LABELNO))) +#define IDENT_ASM_OP ".ident" + +/* Output #ident as a .ident. */ + +#define ASM_OUTPUT_IDENT(FILE, NAME) \ + fprintf (FILE, "\t%s\t\"%s\"\n", IDENT_ASM_OP, NAME); + /* Define the parentheses used to group arithmetic operations in assembler code. */ -- 2.30.2