| Index: src/x64/macro-assembler-x64.cc
|
| ===================================================================
|
| --- src/x64/macro-assembler-x64.cc (revision 4596)
|
| +++ src/x64/macro-assembler-x64.cc (working copy)
|
| @@ -1227,8 +1227,7 @@
|
|
|
| void MacroAssembler::SmiShiftLeftConstant(Register dst,
|
| Register src,
|
| - int shift_value,
|
| - Label* on_not_smi_result) {
|
| + int shift_value) {
|
| if (!dst.is(src)) {
|
| movq(dst, src);
|
| }
|
| @@ -1240,8 +1239,7 @@
|
|
|
| void MacroAssembler::SmiShiftLeft(Register dst,
|
| Register src1,
|
| - Register src2,
|
| - Label* on_not_smi_result) {
|
| + Register src2) {
|
| ASSERT(!dst.is(rcx));
|
| Label result_ok;
|
| // Untag shift amount.
|
|
|