Index: src/arm/lithium-codegen-arm.cc |
diff --git a/src/arm/lithium-codegen-arm.cc b/src/arm/lithium-codegen-arm.cc |
index 3ad86cfed3b9ab3d6a4e775df4e33364052e2fdb..f6c878908ac3af119696c446c2824993b021f03d 100644 |
--- a/src/arm/lithium-codegen-arm.cc |
+++ b/src/arm/lithium-codegen-arm.cc |
@@ -5671,12 +5671,12 @@ void LCodeGen::DoAllocate(LAllocate* instr) { |
__ Allocate(size, result, scratch, scratch2, deferred->entry(), flags); |
} else { |
Register size = ToRegister(instr->size()); |
- __ AllocateInNewSpace(size, |
- result, |
- scratch, |
- scratch2, |
- deferred->entry(), |
- flags); |
+ __ Allocate(size, |
+ result, |
+ scratch, |
+ scratch2, |
+ deferred->entry(), |
+ flags); |
} |
__ bind(deferred->exit()); |