| Index: src/assembler_ia32.h
|
| diff --git a/src/assembler_ia32.h b/src/assembler_ia32.h
|
| index 5c312fb708d9e5a48817ca04a91c5f63acab237b..e33838dd9ed34cd0c48684ee5cc0a669b9a77975 100644
|
| --- a/src/assembler_ia32.h
|
| +++ b/src/assembler_ia32.h
|
| @@ -483,15 +483,10 @@ public:
|
| void mov(Type Ty, const Address &dst, GPRRegister src);
|
| void mov(Type Ty, const Address &dst, const Immediate &imm);
|
|
|
| - void movzxb(GPRRegister dst, ByteRegister src);
|
| - void movzxb(GPRRegister dst, const Address &src);
|
| - void movsxb(GPRRegister dst, ByteRegister src);
|
| - void movsxb(GPRRegister dst, const Address &src);
|
| -
|
| - void movzxw(GPRRegister dst, GPRRegister src);
|
| - void movzxw(GPRRegister dst, const Address &src);
|
| - void movsxw(GPRRegister dst, GPRRegister src);
|
| - void movsxw(GPRRegister dst, const Address &src);
|
| + void movzx(Type Ty, GPRRegister dst, GPRRegister src);
|
| + void movzx(Type Ty, GPRRegister dst, const Address &src);
|
| + void movsx(Type Ty, GPRRegister dst, GPRRegister src);
|
| + void movsx(Type Ty, GPRRegister dst, const Address &src);
|
|
|
| void lea(Type Ty, GPRRegister dst, const Address &src);
|
|
|
|
|