diff options
author | Doug Evans <dje@gnu.org> | 1996-03-20 22:05:49 +0000 |
---|---|---|
committer | Doug Evans <dje@gnu.org> | 1996-03-20 22:05:49 +0000 |
commit | 1cdbf242eb2776080b52d269771c054abac1187f (patch) | |
tree | b9c9d928374e154cc2dec598d868a2b06bc1c897 /gcc | |
parent | 11779f2717ab39097a022312865f700714312659 (diff) | |
download | gcc-1cdbf242eb2776080b52d269771c054abac1187f.zip gcc-1cdbf242eb2776080b52d269771c054abac1187f.tar.gz gcc-1cdbf242eb2776080b52d269771c054abac1187f.tar.bz2 |
sparc.h (CPP_CPU_SPEC): Add v8plus entry.
* sparc/sparc.h (CPP_CPU_SPEC): Add v8plus entry.
(ASM_CPU_SPEC): Likewise.
From-SVN: r11582
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/sparc/sparc.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gcc/config/sparc/sparc.h b/gcc/config/sparc/sparc.h index f0a1c5c..40b9b6e 100644 --- a/gcc/config/sparc/sparc.h +++ b/gcc/config/sparc/sparc.h @@ -116,6 +116,7 @@ Unrecognized value in TARGET_CPU_DEFAULT. /* Common CPP definitions used by CPP_SPEC amongst the various targets for handling -mcpu=xxx switches. */ +/* ??? v8plus/v9/ultrasparc handling is tentative */ #define CPP_CPU_SPEC "\ %{mcypress:} \ %{msparclite:-D__sparclite__} \ @@ -126,6 +127,7 @@ Unrecognized value in TARGET_CPU_DEFAULT. %{mcpu=f930:-D__sparclite__} %{mcpu=f934:-D__sparclite__} \ %{mcpu=v8:-D__sparc_v8__} \ %{mcpu=supersparc:-D__supersparc__ -D__sparc_v8__} \ +%{mcpu=v8plus:-D__sparc_v9__} \ %{mcpu=v9:-D__sparc_v9__} \ %{mcpu=ultrasparc:-D__sparc_v9__} \ %{!mcpu*:%{!mcypress:%{!msparclite:%{!mf930:%{!mf934:%{!mv8:%{!msupersparc:%(cpp_default)}}}}}}} \ @@ -135,7 +137,7 @@ Unrecognized value in TARGET_CPU_DEFAULT. /* This used to translate -dalign to -malign, but that is no good because it can't turn off the usual meaning of making debugging dumps. */ /* Translate old style -m<cpu> into new style -mcpu=<cpu>. - At some point support for -m<cpu> will be deleted. */ + ??? Delete support for -m<cpu> for 2.9. */ #define CC1_SPEC "\ %{sun4:} %{target:} \ @@ -165,6 +167,7 @@ Unrecognized value in TARGET_CPU_DEFAULT. %{mf930:-Asparclite} %{mf934:-Asparclite} \ %{mcpu=sparclite:-Asparclite} \ %{mcpu=f930:-Asparclite} %{mcpu=f934:-Asparclite} \ +%{mcpu=v8plus:-Av9} \ %{mcpu=v9:-Av9} \ %{mcpu=ultrasparc:-Av9} \ %{!mcpu*:%{!mcypress:%{!msparclite:%{!mf930:%{!mf934:%{!mv8:%{!msupersparc:%(asm_default)}}}}}}} \ |