diff options
author | Jeff Law <law@redhat.com> | 1996-10-08 17:56:40 +0000 |
---|---|---|
committer | Jeff Law <law@redhat.com> | 1996-10-08 17:56:40 +0000 |
commit | 06b796584de890aa2f5cc4d72303ec5719d45290 (patch) | |
tree | d27033666647da0227bc09965edcadde270a5e4c | |
parent | e7b9847623a912512d3dec1017d406fd30f89a06 (diff) | |
download | gdb-06b796584de890aa2f5cc4d72303ec5719d45290.zip gdb-06b796584de890aa2f5cc4d72303ec5719d45290.tar.gz gdb-06b796584de890aa2f5cc4d72303ec5719d45290.tar.bz2 |
* mn10300-opc.c (mn10300_opcodes): Fix typos in yesterday's
changes.
Matsushita.
-rw-r--r-- | opcodes/ChangeLog | 5 | ||||
-rw-r--r-- | opcodes/mn10300-opc.c | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index cf0d818..ffaa14f 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,8 @@ +Tue Oct 8 11:55:35 1996 Jeffrey A Law (law@cygnus.com) + + * mn10300-opc.c (mn10300_opcodes): Fix typos in yesterday's + changes. + Mon Oct 7 16:48:45 1996 Jeffrey A Law (law@cygnus.com) * mn10300-opc.c (FMT_XX): Renumber starting at one. diff --git a/opcodes/mn10300-opc.c b/opcodes/mn10300-opc.c index c5225f0..c2112c6 100644 --- a/opcodes/mn10300-opc.c +++ b/opcodes/mn10300-opc.c @@ -350,7 +350,7 @@ const struct mn10300_opcode mn10300_opcodes[] = { { "jmp", 0xf0f4, 0xfffc, FMT_D0, {AN}, }, { "jmp", 0xcc0000, 0xff0000, FMT_S2, {D16}, }, { "jmp", 0xdc0000, 0xff0000, FMT_S4, {D32}, }, -{ "call", 0, 0, FMT_S4, 0, {D16}, }, +{ "call", 0, 0, FMT_S4, {D16}, }, { "call", 0xdd000000, 0xff000000, FMT_S6, {D32,}, }, { "calls", 0xf0f0, 0xfffc, FMT_D0, {AN}, }, { "calls", 0xfaff0000, 0xffff0000, FMT_D2, {D16}, }, @@ -364,7 +364,7 @@ const struct mn10300_opcode mn10300_opcodes[] = { { "rtm", 0xf0ff, 0xffff, FMT_D0, {UNUSED} }, { "nop", 0xcb, 0xff, FMT_S0, {UNUSED} }, /* { "udf", 0, 0, {0}, }, */ -{ 0, 0, 0, 0, 0, {0}, }, +{ 0, 0, 0, 0, {0}, }, } ; |