mirror of
https://github.com/netwide-assembler/nasm.git
synced 2024-11-21 03:14:19 +08:00
Comment "REX.I" should have been "REX.X"
This commit is contained in:
parent
c1c5a2d96f
commit
2cc61b34f0
@ -1712,11 +1712,11 @@ static ea *process_ea(operand * input, ea * output, int addrbits,
|
||||
|| (s != 1 && s != 2 && s != 4 && s != 8 && it != -1))
|
||||
return NULL; /* wrong, for various reasons */
|
||||
|
||||
if (i >= 0400 && i < 0500) { /* Calculate REX.I */
|
||||
if (i >= 0400 && i < 0500) { /* Calculate REX.X */
|
||||
if (i < 0410 || (i >= 0440 && i < 0450))
|
||||
output->rex |= 0xF0; /* Set REX.0 */
|
||||
else
|
||||
output->rex |= 0xF2; /* Set REX.I */
|
||||
output->rex |= 0xF2; /* Set REX.X */
|
||||
if (i >= 0440)
|
||||
output->rex |= 0xF8; /* Set REX.W */
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user