diff options
author | Nick Clifton <nickc@redhat.com> | 1997-09-10 17:05:00 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 1997-09-10 17:05:00 +0000 |
commit | 756adc97a30c9ee4c4b578c4afab78697af4093f (patch) | |
tree | 574c142394bd2b5ada2f2f06ecb46faeb2ef0e45 /gas | |
parent | dac3209048bfd8c172be8652216e5d6c23e34731 (diff) | |
download | gdb-756adc97a30c9ee4c4b578c4afab78697af4093f.zip gdb-756adc97a30c9ee4c4b578c4afab78697af4093f.tar.gz gdb-756adc97a30c9ee4c4b578c4afab78697af4093f.tar.bz2 |
Added v850 emulation.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 4 | ||||
-rwxr-xr-x | gas/configure | 1 | ||||
-rw-r--r-- | gas/configure.in | 1 |
3 files changed, 6 insertions, 0 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index b3233fd..553be8a 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,7 @@ +Wed Sep 10 10:07:08 1997 Nick Clifton <nickc@cygnus.com> + + * configure.in (emulations): Add v850 emulation. + Tue Sep 9 17:14:33 1997 Doug Evans <dje@canuck.cygnus.com> * Makefile.am (CPU_TYPES): Add arc. diff --git a/gas/configure b/gas/configure index 7e2bbe8..026972f 100755 --- a/gas/configure +++ b/gas/configure @@ -1308,6 +1308,7 @@ for this_target in $target $canon_targets ; do rs6000*) cpu_type=ppc ;; sparc64) cpu_type=sparc want_sparc_v9=true ;; sparc*) cpu_type=sparc ;; + v850*) cpu_type=v850 ;; *) cpu_type=${cpu} ;; esac diff --git a/gas/configure.in b/gas/configure.in index 87bc751..462c865 100644 --- a/gas/configure.in +++ b/gas/configure.in @@ -87,6 +87,7 @@ changequote([,])dnl rs6000*) cpu_type=ppc ;; sparc64) cpu_type=sparc want_sparc_v9=true ;; sparc*) cpu_type=sparc ;; + v850*) cpu_type=v850 ;; *) cpu_type=${cpu} ;; esac |