diff options
author | aj <aj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-01-26 14:40:22 +0000 |
---|---|---|
committer | aj <aj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-01-26 14:40:22 +0000 |
commit | 06b9f7dcf9ff90ad68b7799ee8afe85374c1bf06 (patch) | |
tree | 1ad40e789d391d8f3140aebb5c259c027424f6a7 /gcc/config/i386/freebsd-aout.h | |
parent | befaf436af84ed695be33782d7eb5daa67394583 (diff) | |
download | gcc-06b9f7dcf9ff90ad68b7799ee8afe85374c1bf06.tar.gz |
2003-01-26 Steven Bosscher <s.bosscher@student.tudelft.nl>
* config/avr/avr.h, config/cris/aout.h, config/elfos.h,
config/i386/freebsd-aout.h, config/mips/iris6.h: Undefine
ASM_FINISH_DECLARE_OBJECT before defining it.
* toplev.c (rest_of_decl_compilation): Don't define
ASM_FINISH_DECLARE_OBJECT. Only use it if it is defined.
(rest_of_type_compilation): Don't ATTRIBUTE_UNUSED function
parameters for DWARF2 targets because they _are_ used.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@61851 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/i386/freebsd-aout.h')
-rw-r--r-- | gcc/config/i386/freebsd-aout.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/config/i386/freebsd-aout.h b/gcc/config/i386/freebsd-aout.h index 646cf13b5d8..78735f0d71b 100644 --- a/gcc/config/i386/freebsd-aout.h +++ b/gcc/config/i386/freebsd-aout.h @@ -1,6 +1,6 @@ /* Definitions of target machine for GNU compiler for Intel 80386 running FreeBSD. - Copyright (C) 1988, 1992, 1994, 1996, 1997, 1999, 2000, 2002 + Copyright (C) 1988, 1992, 1994, 1996, 1997, 1999, 2000, 2002, 2003 Free Software Foundation, Inc. Contributed by Poul-Henning Kamp <phk@login.dkuug.dk> Continued development by David O'Brien <obrien@NUXI.org> @@ -175,6 +175,7 @@ Boston, MA 02111-1307, USA. */ size_directive_output was set by ASM_DECLARE_OBJECT_NAME when it was run for the same decl. */ +#undef ASM_FINISH_DECLARE_OBJECT #define ASM_FINISH_DECLARE_OBJECT(FILE, DECL, TOP_LEVEL, AT_END) \ do { \ const char *name = XSTR (XEXP (DECL_RTL (DECL), 0), 0); \ |