diff options
Diffstat (limited to 'compiler/optimizing/ssa_test.cc')
-rw-r--r-- | compiler/optimizing/ssa_test.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/compiler/optimizing/ssa_test.cc b/compiler/optimizing/ssa_test.cc index 7fc1ec6dd1..a05b38c9eb 100644 --- a/compiler/optimizing/ssa_test.cc +++ b/compiler/optimizing/ssa_test.cc @@ -32,15 +32,15 @@ class SsaPrettyPrinter : public HPrettyPrinter { public: explicit SsaPrettyPrinter(HGraph* graph) : HPrettyPrinter(graph), str_("") {} - virtual void PrintInt(int value) { + void PrintInt(int value) OVERRIDE { str_ += StringPrintf("%d", value); } - virtual void PrintString(const char* value) { + void PrintString(const char* value) OVERRIDE { str_ += value; } - virtual void PrintNewLine() { + void PrintNewLine() OVERRIDE { str_ += '\n'; } @@ -48,7 +48,7 @@ class SsaPrettyPrinter : public HPrettyPrinter { std::string str() const { return str_; } - virtual void VisitIntConstant(HIntConstant* constant) { + void VisitIntConstant(HIntConstant* constant) OVERRIDE { PrintPreInstruction(constant); str_ += constant->DebugName(); str_ += " "; |