diff options
author | Rainer Orth <ro@TechFak.Uni-Bielefeld.DE> | 2005-08-11 11:31:45 +0000 |
---|---|---|
committer | Rainer Orth <ro@gcc.gnu.org> | 2005-08-11 11:31:45 +0000 |
commit | eb2b0cc0edabaf4b09d32a4ff011cd99c201c9db (patch) | |
tree | 5e30510019af6f2c8618d8b88b6dfc4964b61624 | |
parent | 0711c8ccb13187aa56de91a47c706a266b177a9f (diff) | |
download | gcc-eb2b0cc0edabaf4b09d32a4ff011cd99c201c9db.zip gcc-eb2b0cc0edabaf4b09d32a4ff011cd99c201c9db.tar.gz gcc-eb2b0cc0edabaf4b09d32a4ff011cd99c201c9db.tar.bz2 |
x86-64.h (ASM_OUTPUT_ALIGNED_BSS): Undef before redefinition.
* config/i386/x86-64.h (ASM_OUTPUT_ALIGNED_BSS): Undef before
redefinition.
From-SVN: r102987
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/i386/x86-64.h | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 42e8a16..1e1f0dc 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2005-08-11 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE> + + * config/i386/x86-64.h (ASM_OUTPUT_ALIGNED_BSS): Undef before + redefinition. + 2005-08-11 Wu Zhou <woodzltc@cn.ibm.com> * doc/rtl.texi: Fix two typos. diff --git a/gcc/config/i386/x86-64.h b/gcc/config/i386/x86-64.h index b0e6947..cb92a21 100644 --- a/gcc/config/i386/x86-64.h +++ b/gcc/config/i386/x86-64.h @@ -51,6 +51,7 @@ Boston, MA 02110-1301, USA. */ #define ASM_SPEC "%{v:-V} %{Qy:} %{!Qn:-Qy} %{n} %{T} %{Ym,*} %{Yd,*} \ %{Wa,*:%*} %{m32:--32} %{m64:--64}" +#undef ASM_OUTPUT_ALIGNED_BSS #define ASM_OUTPUT_ALIGNED_BSS(FILE, DECL, NAME, SIZE, ALIGN) \ x86_output_aligned_bss (FILE, DECL, NAME, SIZE, ALIGN) |