diff options
author | H. Peter Anvin <hpa@zytor.com> | 2012-02-25 22:22:07 -0800 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2012-02-25 22:22:07 -0800 |
commit | fb3f4e6ddbb00dea78cdccc71b824d829dc058de (patch) | |
tree | dff0693143ac65e803d833c8d51e6ba0d5144ae2 /disasm.c | |
parent | c5473121afc4025669ef4b86b99bdbfc7a46c44d (diff) | |
download | nasm-fb3f4e6ddbb00dea78cdccc71b824d829dc058de.tar.gz nasm-fb3f4e6ddbb00dea78cdccc71b824d829dc058de.tar.bz2 nasm-fb3f4e6ddbb00dea78cdccc71b824d829dc058de.zip |
HLE: Change NOHLE to be an instruction flag
The way our matching system works we have to make NOHLE an instruction
flag rather than an byte code; by the time we run the byte code
interpreter we have already picked an instruction pattern once and for
all.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'disasm.c')
-rw-r--r-- | disasm.c | 3 |
1 files changed, 0 insertions, 3 deletions
@@ -703,9 +703,6 @@ static int matches(const struct itemplate *t, uint8_t *data, break; } - case 0264: - break; - case 0265: if (prefix->rep == 0xF3) drep = P_XRELEASE; |