| Index: src/compiler/s390/instruction-selector-s390.cc
|
| diff --git a/src/compiler/s390/instruction-selector-s390.cc b/src/compiler/s390/instruction-selector-s390.cc
|
| index 47bb923e5488b655349fa130d12290d55b1b0a27..90692dd73698bdd36ddac5b14b1b784ccd567720 100644
|
| --- a/src/compiler/s390/instruction-selector-s390.cc
|
| +++ b/src/compiler/s390/instruction-selector-s390.cc
|
| @@ -1874,7 +1874,7 @@ void VisitWordCompare(InstructionSelector* selector, Node* node,
|
| DCHECK(input_count <= 8 && output_count <= 1);
|
| if (cont->IsDeoptimize()) {
|
| selector->EmitDeoptimize(opcode, 0, nullptr, input_count, inputs,
|
| - cont->reason(), cont->frame_state());
|
| + cont->kind(), cont->reason(), cont->frame_state());
|
| } else {
|
| selector->Emit(opcode, output_count, outputs, input_count, inputs);
|
| }
|
| @@ -1979,7 +1979,7 @@ void VisitLoadAndTest(InstructionSelector* selector, InstructionCode opcode,
|
| opcode = cont->Encode(opcode);
|
| if (cont->IsDeoptimize()) {
|
| selector->EmitDeoptimize(opcode, output_count, outputs, input_count, inputs,
|
| - cont->reason(), cont->frame_state());
|
| + cont->kind(), cont->reason(), cont->frame_state());
|
| } else {
|
| selector->Emit(opcode, output_count, outputs, input_count, inputs);
|
| }
|
|
|