aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorDoug Evans <devans@gcc.gnu.org>1997-10-24 19:36:54 +0000
committerDoug Evans <devans@gcc.gnu.org>1997-10-24 19:36:54 +0000
commite632a26c1dc625aace379be7b7d811a6931c9cb8 (patch)
tree20a2707459e2cda436583c0c1df790d682084c5a /gcc
parent371036e032821390863c72e01d092575f735a1c8 (diff)
downloadgcc-e632a26c1dc625aace379be7b7d811a6931c9cb8.zip
gcc-e632a26c1dc625aace379be7b7d811a6931c9cb8.tar.gz
gcc-e632a26c1dc625aace379be7b7d811a6931c9cb8.tar.bz2
(ASM_SPEC): Delete asm_arch.
From-SVN: r16163
Diffstat (limited to 'gcc')
-rw-r--r--gcc/config/sparc/sparc.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/gcc/config/sparc/sparc.h b/gcc/config/sparc/sparc.h
index 82357d8..9d8f1a1 100644
--- a/gcc/config/sparc/sparc.h
+++ b/gcc/config/sparc/sparc.h
@@ -215,11 +215,13 @@ Unrecognized value in TARGET_CPU_DEFAULT.
%{!mcpu*:%{!mcypress:%{!msparclite:%{!mf930:%{!mf934:%{!mv8:%{!msupersparc:%(asm_cpu_default)}}}}}}} \
"
-/* Word size selection, among other things. */
+/* Word size selection, among other things.
+ This is what GAS uses. Add %(asm_arch) to ASM_SPEC to enable. */
+
#define ASM_ARCH32_SPEC "-32"
#define ASM_ARCH64_SPEC "-64"
#define ASM_ARCH_DEFAULT_SPEC \
-(DEFAULT_ARCH32_P ? ASM_ARCH32_SPEC : ASM_ARCH64_SPEC)
+(DEFAULT_ARCH32_P ? ASM_ARCH32_SPEC : ASM_ARCH64_SPEC)
#define ASM_ARCH_SPEC "\
%{m32:%(asm_arch32)} \
@@ -231,7 +233,7 @@ Unrecognized value in TARGET_CPU_DEFAULT.
#define ASM_SPEC "\
%| %{R} %{!pg:%{!p:%{fpic:-k} %{fPIC:-k}}} %{keep-local-as-symbols:-L} \
-%(asm_cpu) %(asm_arch) \
+%(asm_cpu) \
"
#define LIB_SPEC "%{!shared:%{!p:%{!pg:-lc}}%{p:-lc_p}%{pg:-lc_p} %{g:-lg}}"