x86-64-asm: Add mov[sz]xq opcodes

This adds the zero/sign-extending opcodes with 64bit destinations.
This commit is contained in:
Michael Matz
2016-05-12 00:57:02 +02:00
parent b9f01dffc6
commit 6bd8c936e3
3 changed files with 14 additions and 1 deletions

View File

@ -152,6 +152,9 @@
DEF_ASM(movsbl)
DEF_ASM(movswl)
#ifdef TCC_TARGET_X86_64
DEF_ASM(movsbq)
DEF_ASM(movswq)
DEF_ASM(movzwq)
DEF_ASM(movslq)
#endif