diff options
author | David Edelsohn <dje.gcc@gmail.com> | 1996-01-22 19:00:40 +0000 |
---|---|---|
committer | David Edelsohn <dje.gcc@gmail.com> | 1996-01-22 19:00:40 +0000 |
commit | e8bea13fa75dd3a85b2be60c72d8878ee137d0be (patch) | |
tree | c9fa2e6e2fd2f0455c5b41fe83f135be95492f84 /bfd/cpu-sparc.c | |
parent | 5a5bac647184cb35cac3ae11affc36bfda8b75a0 (diff) | |
download | gdb-e8bea13fa75dd3a85b2be60c72d8878ee137d0be.zip gdb-e8bea13fa75dd3a85b2be60c72d8878ee137d0be.tar.gz gdb-e8bea13fa75dd3a85b2be60c72d8878ee137d0be.tar.bz2 |
Move v8plus stuff around so sanitized code works.
Diffstat (limited to 'bfd/cpu-sparc.c')
-rw-r--r-- | bfd/cpu-sparc.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/bfd/cpu-sparc.c b/bfd/cpu-sparc.c index 46d6292..583a75d 100644 --- a/bfd/cpu-sparc.c +++ b/bfd/cpu-sparc.c @@ -23,50 +23,50 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ static const bfd_arch_info_type arch_info_struct[] = { - /* start-sanitize-v8plus */ { - 32, /* bits in a word */ - 32, /* bits in an address */ + 64, /* bits in a word */ + 64, /* bits in an address */ 8, /* bits in a byte */ bfd_arch_sparc, - bfd_mach_sparc_v8plus, + bfd_mach_sparc_v9, "sparc", - "sparc:v8plus", + "sparc:v9", 3, false, bfd_default_compatible, bfd_default_scan, &arch_info_struct[1], }, + /* start-sanitize-v8plus */ { 32, /* bits in a word */ 32, /* bits in an address */ 8, /* bits in a byte */ bfd_arch_sparc, - bfd_mach_sparc_v8plusa, + bfd_mach_sparc_v8plus, "sparc", - "sparc:v8plusa", + "sparc:v8plus", 3, false, bfd_default_compatible, bfd_default_scan, &arch_info_struct[2], }, - /* end-sanitize-v8plus */ { - 64, /* bits in a word */ - 64, /* bits in an address */ + 32, /* bits in a word */ + 32, /* bits in an address */ 8, /* bits in a byte */ bfd_arch_sparc, - bfd_mach_sparc_v9, + bfd_mach_sparc_v8plusa, "sparc", - "sparc:v9", + "sparc:v8plusa", 3, false, bfd_default_compatible, bfd_default_scan, &arch_info_struct[3], }, + /* end-sanitize-v8plus */ { 64, /* bits in a word */ 64, /* bits in an address */ |