* i386-dis.c (dis386): Use Yb and Yv for scasb and scasS.

This commit is contained in:
Jim Kingdon
1994-01-17 00:38:56 +00:00
parent a39f77396e
commit a279b1f5ff
2 changed files with 29 additions and 5 deletions

View File

@@ -415,8 +415,8 @@ struct dis386 dis386[] = {
{ "stosS", Yv, eAX },
{ "lodsb", AL, Xb },
{ "lodsS", eAX, Xv },
{ "scasb", AL, Xb },
{ "scasS", eAX, Xv },
{ "scasb", AL, Yb },
{ "scasS", eAX, Yv },
/* b0 */
{ "movb", AL, Ib },
{ "movb", CL, Ib },
@@ -1106,7 +1106,7 @@ print_insn_i386 (pc, info)
if (*first)
{
if (op_index[0] != -1)
print_address (op_address[op_index[0]], info->stream);
(*info->print_address_func) (op_address[op_index[0]], info);
else
(*info->fprintf_func) (info->stream, "%s", first);
needcomma = 1;
@@ -1116,7 +1116,7 @@ print_insn_i386 (pc, info)
if (needcomma)
(*info->fprintf_func) (info->stream, ",");
if (op_index[1] != -1)
print_address (op_address[op_index[1]], info->stream);
(*info->print_address_func) (op_address[op_index[1]], info);
else
(*info->fprintf_func) (info->stream, "%s", second);
needcomma = 1;
@@ -1126,7 +1126,7 @@ print_insn_i386 (pc, info)
if (needcomma)
(*info->fprintf_func) (info->stream, ",");
if (op_index[2] != -1)
print_address (op_address[op_index[2]], info->stream);
(*info->print_address_func) (op_address[op_index[2]], info);
else
(*info->fprintf_func) (info->stream, "%s", third);
}