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 92a72ba32cb6e1931efbc1e19fd772468b3ef3be..09a7154089a1c9582d50758c418df810e75378f7 100644 |
--- a/test/cctest/compiler/test-gap-resolver.cc |
+++ b/test/cctest/compiler/test-gap-resolver.cc |
@@ -116,14 +116,14 @@ class MoveInterpreter : public GapResolver::Assembler { |
explicit MoveInterpreter(Zone* zone) : zone_(zone) {} |
virtual void AssembleMove(InstructionOperand* source, |
- InstructionOperand* destination) OVERRIDE { |
+ InstructionOperand* destination) override { |
ParallelMove* moves = new (zone_) ParallelMove(zone_); |
moves->AddMove(*source, *destination); |
state_.ExecuteInParallel(moves); |
} |
virtual void AssembleSwap(InstructionOperand* source, |
- InstructionOperand* destination) OVERRIDE { |
+ InstructionOperand* destination) override { |
ParallelMove* moves = new (zone_) ParallelMove(zone_); |
moves->AddMove(*source, *destination); |
moves->AddMove(*destination, *source); |