diff options
author | Jeff Law <law@redhat.com> | 1996-07-05 18:59:31 +0000 |
---|---|---|
committer | Jeff Law <law@redhat.com> | 1996-07-05 18:59:31 +0000 |
commit | 25b344a4a21fc31cf8b4e5fe12d787c25e30f8d1 (patch) | |
tree | 984eb15bfc31d16163b9205bfd4322429b0c42d6 /sim/h8300/compile.c | |
parent | cce8528df93021ce6c45f5e645f9281d3210f619 (diff) | |
download | gdb-25b344a4a21fc31cf8b4e5fe12d787c25e30f8d1.zip gdb-25b344a4a21fc31cf8b4e5fe12d787c25e30f8d1.tar.gz gdb-25b344a4a21fc31cf8b4e5fe12d787c25e30f8d1.tar.bz2 |
No longer need to sanitize away h8s stuff.
Diffstat (limited to 'sim/h8300/compile.c')
-rw-r--r-- | sim/h8300/compile.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/sim/h8300/compile.c b/sim/h8300/compile.c index a04657b..7159af2 100644 --- a/sim/h8300/compile.c +++ b/sim/h8300/compile.c @@ -84,9 +84,7 @@ int debug; static cpu_state_type cpu; int h8300hmode = 0; -/* start-sanitize-h8s */ int h8300smode = 0; -/* end-sanitize-h8s */ static int memory_size; @@ -1467,7 +1465,6 @@ sim_resume (step, siggnal) case O (O_NOP, SB): goto next; -/* start-sanitize-h8s */ case O (O_STM, SL): { int nregs, firstreg, i; @@ -1502,7 +1499,6 @@ sim_resume (step, siggnal) } goto next; -/* end-sanitize-h8s */ default: cpu.exception = SIGILL; goto end; @@ -1973,10 +1969,7 @@ sim_load (prog, from_tty) if (bfd_check_format (abfd, bfd_object)) { set_h8300h (abfd->arch_info->mach == bfd_mach_h8300h -/* start-sanitize-h8s */ - || abfd->arch_info->mach == bfd_mach_h8300s -/* end-sanitize-h8s */ - ); + || abfd->arch_info->mach == bfd_mach_h8300s); } bfd_close (abfd); } |