Index: src/full-codegen/x87/full-codegen-x87.cc |
diff --git a/src/full-codegen/x87/full-codegen-x87.cc b/src/full-codegen/x87/full-codegen-x87.cc |
index 8a203b683524cb0f919786de7ac36a62ecd3558f..5aad478c9e0cc7d63f1b71ab16df3445ca2f6291 100644 |
--- a/src/full-codegen/x87/full-codegen-x87.cc |
+++ b/src/full-codegen/x87/full-codegen-x87.cc |
@@ -2904,7 +2904,7 @@ void FullCodeGenerator::VisitCallNew(CallNew* expr) { |
__ mov(edx, Immediate(SmiFromSlot(expr->CallNewFeedbackSlot()))); |
CallConstructStub stub(isolate()); |
- __ call(stub.GetCode(), RelocInfo::CONSTRUCT_CALL); |
+ __ call(stub.GetCode(), RelocInfo::CODE_TARGET); |
PrepareForBailoutForId(expr->ReturnId(), TOS_REG); |
// Restore context register. |
__ mov(esi, Operand(ebp, StandardFrameConstants::kContextOffset)); |
@@ -2939,7 +2939,7 @@ void FullCodeGenerator::EmitSuperConstructorCall(Call* expr) { |
__ Move(eax, Immediate(arg_count)); |
__ mov(edi, Operand(esp, arg_count * kPointerSize)); |
- __ Call(isolate()->builtins()->Construct(), RelocInfo::CONSTRUCT_CALL); |
+ __ Call(isolate()->builtins()->Construct(), RelocInfo::CODE_TARGET); |
RecordJSReturnSite(expr); |
@@ -3700,7 +3700,7 @@ void FullCodeGenerator::EmitDefaultConstructorCallSuper(CallRuntime* expr) { |
__ mov(edx, Operand(esp, eax, times_pointer_size, 1 * kPointerSize)); |
__ mov(edi, Operand(esp, eax, times_pointer_size, 0 * kPointerSize)); |
- __ Call(isolate()->builtins()->Construct(), RelocInfo::CONSTRUCT_CALL); |
+ __ Call(isolate()->builtins()->Construct(), RelocInfo::CODE_TARGET); |
// Restore context register. |
__ mov(esi, Operand(ebp, StandardFrameConstants::kContextOffset)); |