diff options
| -rw-r--r-- | gcc/ChangeLog | 5 | ||||
| -rw-r--r-- | gcc/config/alpha/elf.h | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 4c6d275..e4dc2ea 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2000-10-06 David O'Brien <obrien@FreeBSD.org> + + * config/alpha/elf.h: Protect the ASM_OUTPUT_IDENT definition with an + #undef. + 2000-10-06 Richard Henderson <rth@cygnus.com> * function.c (diddle_return_value): Examine diff --git a/gcc/config/alpha/elf.h b/gcc/config/alpha/elf.h index 91a7837..f8df167 100644 --- a/gcc/config/alpha/elf.h +++ b/gcc/config/alpha/elf.h @@ -91,6 +91,7 @@ do { \ #define SCCS_DIRECTIVE /* Output #ident as a .ident. */ +#undef ASM_OUTPUT_IDENT #define ASM_OUTPUT_IDENT(FILE, NAME) \ fprintf (FILE, "%s\"%s\"\n", IDENT_ASM_OP, NAME); |
