Index: src/arm/lithium-codegen-arm.cc |
diff --git a/src/arm/lithium-codegen-arm.cc b/src/arm/lithium-codegen-arm.cc |
index 60b9cbc1cf7fb47de208e425118e4ad53285d714..82b5d07b11284d51d14039415dbe12c1746ea3e9 100644 |
--- a/src/arm/lithium-codegen-arm.cc |
+++ b/src/arm/lithium-codegen-arm.cc |
@@ -748,13 +748,15 @@ void LCodeGen::CallCodeGeneric(Handle<Code> code, |
void LCodeGen::CallRuntime(const Runtime::Function* function, |
int num_arguments, |
- LInstruction* instr) { |
+ LInstruction* instr, |
+ SaveFPRegsMode save_doubles) { |
ASSERT(instr != NULL); |
LPointerMap* pointers = instr->pointer_map(); |
ASSERT(pointers != NULL); |
RecordPosition(pointers->position()); |
- __ CallRuntime(function, num_arguments); |
+ __ CallRuntime(function, num_arguments, save_doubles); |
+ |
RecordSafepointWithLazyDeopt(instr, RECORD_SIMPLE_SAFEPOINT); |
} |