aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gas/ChangeLog5
-rwxr-xr-xgas/configure4
-rw-r--r--gas/configure.in4
3 files changed, 9 insertions, 4 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog
index 0e00d35..33454ac 100644
--- a/gas/ChangeLog
+++ b/gas/ChangeLog
@@ -1,3 +1,8 @@
+Mon Feb 12 15:53:46 1996 Doug Evans <dje@charmed.cygnus.com>
+
+ * configure.in: Recognize any sparc* cpu.
+ * configure: Regenerated.
+
Mon Feb 12 15:41:21 1996 Ian Lance Taylor <ian@cygnus.com>
* app.c (do_scrub_chars): In MRI mode, don't treat '#' as a
diff --git a/gas/configure b/gas/configure
index fe2ed6a..80bf9c5 100755
--- a/gas/configure
+++ b/gas/configure
@@ -702,7 +702,7 @@ case ${target_cpu} in
#define SPARC_V9 1
EOF
;;
- sparclite*) cpu_type=sparc ;;
+ sparc*) cpu_type=sparc ;;
*) cpu_type=${target_cpu} ;;
esac
@@ -778,7 +778,7 @@ for this_target in $target $canon_targets ; do
powerpc*) cpu_type=ppc endian=big ;;
rs6000*) cpu_type=ppc ;;
sparc64) cpu_type=sparc want_sparc_v9=true ;;
- sparclite*) cpu_type=sparc ;;
+ sparc*) cpu_type=sparc ;;
*) cpu_type=${cpu} ;;
esac
diff --git a/gas/configure.in b/gas/configure.in
index fcc8f0d..9d371ef 100644
--- a/gas/configure.in
+++ b/gas/configure.in
@@ -62,7 +62,7 @@ changequote([,])dnl
rs6000*) cpu_type=ppc ;;
sparc64) cpu_type=sparc
AC_DEFINE(SPARC_V9) ;;
- sparclite*) cpu_type=sparc ;;
+ sparc*) cpu_type=sparc ;;
*) cpu_type=${target_cpu} ;;
esac
@@ -128,7 +128,7 @@ changequote([,])dnl
powerpc*) cpu_type=ppc endian=big ;;
rs6000*) cpu_type=ppc ;;
sparc64) cpu_type=sparc want_sparc_v9=true ;;
- sparclite*) cpu_type=sparc ;;
+ sparc*) cpu_type=sparc ;;
*) cpu_type=${cpu} ;;
esac