diff options
author | Mark Mitchell <mark@codesourcery.com> | 2005-06-13 22:32:18 +0000 |
---|---|---|
committer | Mark Mitchell <mmitchel@gcc.gnu.org> | 2005-06-13 22:32:18 +0000 |
commit | 9b1f9228b2662ca637e03ec55102a1fa95b77cd1 (patch) | |
tree | 3909b4a181e61a49aed4de7f067195b7d74f119b /gcc | |
parent | a61d70b8b5a786b3f989a40a4b3a0e16ecf87b91 (diff) | |
download | gcc-9b1f9228b2662ca637e03ec55102a1fa95b77cd1.zip gcc-9b1f9228b2662ca637e03ec55102a1fa95b77cd1.tar.gz gcc-9b1f9228b2662ca637e03ec55102a1fa95b77cd1.tar.bz2 |
x86-64.h (ASM_SPEC): Explicitly pass --64 to the assembler in 64-bit mode.
* config/i386/x86-64.h (ASM_SPEC): Explicitly pass --64 to the
assembler in 64-bit mode.
From-SVN: r100905
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/i386/x86-64.h | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 9fba87f..5aeb130 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2005-06-13 Mark Mitchell <mark@codesourcery.com> + + * config/i386/x86-64.h (ASM_SPEC): Explicitly pass --64 to the + assembler in 64-bit mode. + 2005-06-13 David Edelsohn <edelsohn@gnu.org> Revert scc_operand patch. diff --git a/gcc/config/i386/x86-64.h b/gcc/config/i386/x86-64.h index e6aa620..e900e43 100644 --- a/gcc/config/i386/x86-64.h +++ b/gcc/config/i386/x86-64.h @@ -49,7 +49,7 @@ Boston, MA 02111-1307, USA. */ #undef ASM_SPEC #define ASM_SPEC "%{v:-V} %{Qy:} %{!Qn:-Qy} %{n} %{T} %{Ym,*} %{Yd,*} \ - %{Wa,*:%*} %{m32:--32}" + %{Wa,*:%*} %{m32:--32} %{m64:--64}" #define ASM_OUTPUT_ALIGNED_BSS(FILE, DECL, NAME, SIZE, ALIGN) \ asm_output_aligned_bss (FILE, DECL, NAME, SIZE, ALIGN) |