Index: src/x64/builtins-x64.cc |
diff --git a/src/x64/builtins-x64.cc b/src/x64/builtins-x64.cc |
index d5577f3eaeb95e310de5433f5cb8099746345137..45df985b60cc1599fc0cc3401dab88c2725895b3 100644 |
--- a/src/x64/builtins-x64.cc |
+++ b/src/x64/builtins-x64.cc |
@@ -278,7 +278,7 @@ static void Generate_JSConstructStubHelper(MacroAssembler* masm, |
// rax: initial map |
// rbx: JSObject |
// rdi: start of next object |
- __ or_(rbx, Immediate(kHeapObjectTag)); |
+ __ orp(rbx, Immediate(kHeapObjectTag)); |
// Check if a non-empty properties array is needed. |
// Allocate and initialize a FixedArray if it is. |
@@ -342,7 +342,7 @@ static void Generate_JSConstructStubHelper(MacroAssembler* masm, |
// the JSObject |
// rbx: JSObject |
// rdi: FixedArray |
- __ or_(rdi, Immediate(kHeapObjectTag)); // add the heap tag |
+ __ orp(rdi, Immediate(kHeapObjectTag)); // add the heap tag |
__ movp(FieldOperand(rbx, JSObject::kPropertiesOffset), rdi); |