| 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 00c220945da891cdd4accfd4cc01f0c27d581db0..6239f2a406f5873afc0ff26c7b81dab0fec13e8c 100644
|
| --- a/test/cctest/compiler/test-gap-resolver.cc
|
| +++ b/test/cctest/compiler/test-gap-resolver.cc
|
| @@ -77,14 +77,14 @@ class InterpreterState {
|
| class MoveInterpreter : public GapResolver::Assembler {
|
| public:
|
| virtual void AssembleMove(InstructionOperand* source,
|
| - InstructionOperand* destination) V8_OVERRIDE {
|
| + InstructionOperand* destination) OVERRIDE {
|
| InterpreterState::Moves moves;
|
| moves.push_back(MoveOperands(source, destination));
|
| state_.ExecuteInParallel(moves);
|
| }
|
|
|
| virtual void AssembleSwap(InstructionOperand* source,
|
| - InstructionOperand* destination) V8_OVERRIDE {
|
| + InstructionOperand* destination) OVERRIDE {
|
| InterpreterState::Moves moves;
|
| moves.push_back(MoveOperands(source, destination));
|
| moves.push_back(MoveOperands(destination, source));
|
|
|