X86: Fix a typo in the microassembly for the cqo instruction.

--HG--
extra : convert_revision : ddf739e591e4414ade37b806a88f3c11292627e2
This commit is contained in:
Gabe Black 2007-09-04 23:23:51 -07:00
parent aaee21afdb
commit 310912cf2c

View file

@ -62,6 +62,6 @@ def macroop CQO_R_R {
# A shift might be slower than, for example, an explicit sign extension,
# so it might be worthwhile to try to find an alternative.
mov regm, regm, reg
sra regm, regm, "env.dataSize * 8 - 1"
srai regm, regm, "env.dataSize * 8 - 1"
};
'''