Commit 3941f347 authored by mtrofin's avatar mtrofin Committed by Commit bot

Pass the 'extra' parameter for X64OperandConverter::ToOperand

BUG=

Review URL: https://codereview.chromium.org/1799113003

Cr-Commit-Position: refs/heads/master@{#34750}
parent 51a22bda
......@@ -49,7 +49,7 @@ class X64OperandConverter : public InstructionOperandConverter {
Operand ToOperand(InstructionOperand* op, int extra = 0) {
DCHECK(op->IsStackSlot() || op->IsDoubleStackSlot());
return SlotToOperand(AllocatedOperand::cast(op)->index());
return SlotToOperand(AllocatedOperand::cast(op)->index(), extra);
}
Operand SlotToOperand(int slot_index, int extra = 0) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment