diff options
author | Stan Cox <scox@redhat.com> | 1998-04-18 18:12:20 +0000 |
---|---|---|
committer | Stan Cox <scox@redhat.com> | 1998-04-18 18:12:20 +0000 |
commit | 307edcc0512a5806688626d980630b57982ac306 (patch) | |
tree | 95e222653d50fc6c98274dc6001717421fd5d0ee /gas | |
parent | 9067435521baa3f0474b46fda99d58a01745580f (diff) | |
download | gdb-307edcc0512a5806688626d980630b57982ac306.zip gdb-307edcc0512a5806688626d980630b57982ac306.tar.gz gdb-307edcc0512a5806688626d980630b57982ac306.tar.bz2 |
Added sparc86x support.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 12 | ||||
-rwxr-xr-x | gas/configure | 1 | ||||
-rw-r--r-- | gas/configure.in | 1 |
3 files changed, 14 insertions, 0 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index de3677f..3f805b5 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,15 @@ +Sat Apr 18 01:21:04 1998 Stan Cox <scox@cygnus.com> + + * configure.in: Added sparc86x support. + + * configure: Rebuild. + + * config/tc-sparc.c (lookup_arch): Added arch_type to struct + sparc_arch. + (md_parse_option): Warn if -EL is not supported for this architecture. + + * config/tc-sparc.h (SPARC_BIENDIAN) Always define. + Sat Apr 18 01:19:01 1998 Jeffrey A Law (law@cygnus.com) * config/tc-mips.c (mips_ip): Note when we use get match on diff --git a/gas/configure b/gas/configure index e8576f9..b4c4933 100755 --- a/gas/configure +++ b/gas/configure @@ -1412,6 +1412,7 @@ for this_target in $target $canon_targets ; do sparclite*) cpu_type=sparc arch=sparclite ;; sparclet*) cpu_type=sparc arch=sparclet ;; sparc64*) cpu_type=sparc arch=v9-64 ;; + sparc86x*) cpu_type=sparc arch=sparc86x ;; sparc*) cpu_type=sparc arch=sparclite ;; # ??? See tc-sparc.c. v850*) cpu_type=v850 ;; *) cpu_type=${cpu} ;; diff --git a/gas/configure.in b/gas/configure.in index c1dde8e..c50a9a6 100644 --- a/gas/configure.in +++ b/gas/configure.in @@ -92,6 +92,7 @@ changequote([,])dnl sparclite*) cpu_type=sparc arch=sparclite ;; sparclet*) cpu_type=sparc arch=sparclet ;; sparc64*) cpu_type=sparc arch=v9-64 ;; + sparc86x*) cpu_type=sparc arch=sparc86x ;; sparc*) cpu_type=sparc arch=sparclite ;; # ??? See tc-sparc.c. v850*) cpu_type=v850 ;; *) cpu_type=${cpu} ;; |