This commit is contained in:
julianb0 2019-07-08 17:48:45 +02:00
parent 8ba9f2dd69
commit 1fd3fdbf8e
No known key found for this signature in database
GPG Key ID: DDF8325C95299A62
1 changed files with 4 additions and 4 deletions

View File

@ -43,16 +43,16 @@ void dump_instr(ctx_t *ctx,
if (cond & (1 << 4))
{
cond &= ~(1 << 4);
trace("n");
}
assert(cond <= sizeof(cond_suffixes)/sizeof(char *));
assert((cond & ~(1 << 4)) <= sizeof(cond_suffixes)/sizeof(char *));
trace("%s", cond_suffixes[cond]);
trace("%s", cond_suffixes[cond & ~(1 << 4)]);
}
if (!rep) trace("\t\t");
if (!rep && cond != ((1 << 4) | CD_CXZ))
trace("\t\t");
else
trace("\t");