| Index: test/cctest/compiler/test-gap-resolver.cc
|
| diff --git a/test/cctest/compiler/test-gap-resolver.cc b/test/cctest/compiler/test-gap-resolver.cc
|
| index aeaf8b970852a340114e8ee62680ef185dd4d2a6..ea6f4ee8307966519968862faefa9d45c8aeb4a9 100644
|
| --- a/test/cctest/compiler/test-gap-resolver.cc
|
| +++ b/test/cctest/compiler/test-gap-resolver.cc
|
| @@ -65,7 +65,9 @@ class InterpreterState {
|
| if (it != is.values_.begin()) os << " ";
|
| InstructionOperand source(it->first.first, it->first.second);
|
| InstructionOperand destination(it->second.first, it->second.second);
|
| - os << MoveOperands(&source, &destination);
|
| + MoveOperands mo(&source, &destination);
|
| + PrintableMoveOperands pmo = {RegisterConfiguration::ArchDefault(), &mo};
|
| + os << pmo;
|
| }
|
| return os;
|
| }
|
|
|