Chromium Code Reviews| Index: runtime/vm/assembler_x64.cc |
| =================================================================== |
| --- runtime/vm/assembler_x64.cc (revision 37230) |
| +++ runtime/vm/assembler_x64.cc (working copy) |
| @@ -240,6 +240,12 @@ |
| } |
| +void Assembler::movl(const Address& dst, const Immediate& imm) { |
| + movl(TMP, imm); |
| + movl(dst, TMP); |
| +} |
| + |
| + |
| void Assembler::movzxb(Register dst, Register src) { |
| AssemblerBuffer::EnsureCapacity ensured(&buffer_); |
| Operand operand(src); |