diff options
author | Segher Boessenkool <segher@kernel.crashing.org> | 2012-08-16 03:36:47 +0200 |
---|---|---|
committer | Segher Boessenkool <segher@gcc.gnu.org> | 2012-08-16 03:36:47 +0200 |
commit | 800d16e96bf03153a56946a12a0f0bc2032c1bb8 (patch) | |
tree | f51e384fc702f7a2dcbd9b32e7fba81fc183ba7b /gcc | |
parent | 6b39bc38c85606f9fecf24dd63a0cea62530cf49 (diff) | |
download | gcc-800d16e96bf03153a56946a12a0f0bc2032c1bb8.zip gcc-800d16e96bf03153a56946a12a0f0bc2032c1bb8.tar.gz gcc-800d16e96bf03153a56946a12a0f0bc2032c1bb8.tar.bz2 |
aix43.h (ASM_CPU_SPEC): Use %(asm_default) instead of -mppc.
2012-08-15 Segher Boessenkool <segher@kernel.crashing.org>
gcc/
* config/rs6000/aix43.h (ASM_CPU_SPEC): Use %(asm_default)
instead of -mppc.
* config/rs6000/aix51.h (ASM_CPU_SPEC): Ditto.
From-SVN: r190433
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/config/rs6000/aix43.h | 2 | ||||
-rw-r--r-- | gcc/config/rs6000/aix51.h | 2 |
3 files changed, 8 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d2219af..52e4deea 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,11 @@ 2012-08-15 Segher Boessenkool <segher@kernel.crashing.org> + * config/rs6000/aix43.h (ASM_CPU_SPEC): Use %(asm_default) + instead of -mppc. + * config/rs6000/aix51.h (ASM_CPU_SPEC): Ditto. + +2012-08-15 Segher Boessenkool <segher@kernel.crashing.org> + * config/rs6000/aix43.h (TARGET_DEFAULT): Delete MASK_NEW_MNEMONICS. (RS6000_CALL_GLUE): Adjust for single assembler syntax. * config/rs6000/aix51.h (TARGET_DEFAULT, RS6000_CALL_GLUE): diff --git a/gcc/config/rs6000/aix43.h b/gcc/config/rs6000/aix43.h index 8465c20..c1a69dc 100644 --- a/gcc/config/rs6000/aix43.h +++ b/gcc/config/rs6000/aix43.h @@ -49,7 +49,7 @@ do { \ #undef ASM_CPU_SPEC #define ASM_CPU_SPEC \ "%{!mcpu*: %{!maix64: \ - %{!mpowerpc64: -mppc} \ + %{!mpowerpc64: %(asm_default)} \ %{mpowerpc64: -mppc64}}} \ %{mcpu=power3: -m620} \ %{mcpu=power4: -m620} \ diff --git a/gcc/config/rs6000/aix51.h b/gcc/config/rs6000/aix51.h index a140e12..6ea30c1 100644 --- a/gcc/config/rs6000/aix51.h +++ b/gcc/config/rs6000/aix51.h @@ -43,7 +43,7 @@ do { \ #undef ASM_CPU_SPEC #define ASM_CPU_SPEC \ "%{!mcpu*: %{!maix64: \ - %{!mpowerpc64: -mppc} \ + %{!mpowerpc64: %(asm_default)} \ %{mpowerpc64: -mppc64}}} \ %{mcpu=power3: -m620} \ %{mcpu=power4: -m620} \ |