Index: src/arm/lithium-codegen-arm.cc |
=================================================================== |
--- src/arm/lithium-codegen-arm.cc (revision 8025) |
+++ src/arm/lithium-codegen-arm.cc (working copy) |
@@ -1093,7 +1093,7 @@ |
__ mov(r0, right); |
__ mov(r1, left); |
} |
- TypeRecordingBinaryOpStub stub(op, OVERWRITE_LEFT); |
+ BinaryOpStub stub(op, OVERWRITE_LEFT); |
__ CallStub(&stub); |
RecordSafepointWithRegistersAndDoubles(instr->pointer_map(), |
0, |
@@ -1399,7 +1399,7 @@ |
ASSERT(ToRegister(instr->InputAt(1)).is(r0)); |
ASSERT(ToRegister(instr->result()).is(r0)); |
- TypeRecordingBinaryOpStub stub(instr->op(), NO_OVERWRITE); |
+ BinaryOpStub stub(instr->op(), NO_OVERWRITE); |
CallCode(stub.GetCode(), RelocInfo::CODE_TARGET, instr); |
} |