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