diff options
Diffstat (limited to 'compiler/optimizing/nodes.h')
-rw-r--r-- | compiler/optimizing/nodes.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/optimizing/nodes.h b/compiler/optimizing/nodes.h index 4670b3f6ff..fedad0c69a 100644 --- a/compiler/optimizing/nodes.h +++ b/compiler/optimizing/nodes.h @@ -2934,7 +2934,7 @@ class HNullConstant final : public HConstant { size_t ComputeHashCode() const override { return 0; } // The null constant representation is a 0-bit pattern. - virtual bool IsZeroBitPattern() const { return true; } + bool IsZeroBitPattern() const override { return true; } DECLARE_INSTRUCTION(NullConstant); @@ -6316,7 +6316,7 @@ class HLoadClass final : public HInstruction { bool CanBeMoved() const override { return true; } - bool InstructionDataEquals(const HInstruction* other) const; + bool InstructionDataEquals(const HInstruction* other) const override; size_t ComputeHashCode() const override { return type_index_.index_; } |