diff options
author | Alexandre Oliva <aoliva@redhat.com> | 2000-07-04 06:54:48 +0000 |
---|---|---|
committer | Alexandre Oliva <aoliva@redhat.com> | 2000-07-04 06:54:48 +0000 |
commit | 66210567f07e22e5f43e4e648358fc6b0fceac44 (patch) | |
tree | 9cd23477b574bfc5dba44887c09c018b03ac9110 /sim/arm/armemu.c | |
parent | e063aa3bd8d3712e37a287603d3256282c209def (diff) | |
download | gdb-66210567f07e22e5f43e4e648358fc6b0fceac44.zip gdb-66210567f07e22e5f43e4e648358fc6b0fceac44.tar.gz gdb-66210567f07e22e5f43e4e648358fc6b0fceac44.tar.bz2 |
* armemu.c (ARMul_Emulate, t_undefined): Proceed to next insn.
Diffstat (limited to 'sim/arm/armemu.c')
-rw-r--r-- | sim/arm/armemu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sim/arm/armemu.c b/sim/arm/armemu.c index 31bd327..7152023 100644 --- a/sim/arm/armemu.c +++ b/sim/arm/armemu.c @@ -428,7 +428,7 @@ ARMul_Emulate26 (register ARMul_State * state) { case t_undefined: ARMul_UndefInstr (state, instr); /* This is a Thumb instruction */ - break; + goto donext; case t_branch: /* already processed */ goto donext; |