Skip to content

Commit

Permalink
Prefix negation fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tyranid committed Mar 12, 2007
1 parent 1fb5859 commit 7516db6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions disasm.C
Original file line number Diff line number Diff line change
Expand Up @@ -1207,14 +1207,14 @@ static char *print_vfpu_prefix(int l, unsigned int pos, char *output)
len = sprintf(output, "-");
if (constant)
{
len += sprintf(output, "%s", pfx_cst_names[(abs_consthi << 2) | swz_constlo]);
len += sprintf(output+len, "%s", pfx_cst_names[(abs_consthi << 2) | swz_constlo]);
}
else
{
if (abs_consthi)
len += sprintf(output, "|%s|", pfx_swz_names[swz_constlo]);
len += sprintf(output+len, "|%s|", pfx_swz_names[swz_constlo]);
else
len += sprintf(output, "%s", pfx_swz_names[swz_constlo]);
len += sprintf(output+len, "%s", pfx_swz_names[swz_constlo]);
}
}
break;
Expand Down

0 comments on commit 7516db6

Please sign in to comment.