diff options
author | Silviu Baranga <silviu.baranga@arm.com> | 2015-11-02 15:29:49 +0000 |
---|---|---|
committer | Silviu Baranga <silviu.baranga@arm.com> | 2015-11-02 15:29:49 +0000 |
commit | ac5540f3ea8c5c5b40a52adfec37dfe05b8bd238 (patch) | |
tree | c39607ff51835655b9f35eac4750e08715292645 | |
parent | 79dfd99d305446a0857cc9d58057d5a3bdcfa62f (diff) | |
download | bcm5719-llvm-ac5540f3ea8c5c5b40a52adfec37dfe05b8bd238.tar.gz bcm5719-llvm-ac5540f3ea8c5c5b40a52adfec37dfe05b8bd238.zip |
Add missing override statements in ScalarEvolution.h. NFC
llvm-svn: 251805
-rw-r--r-- | llvm/include/llvm/Analysis/ScalarEvolution.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/include/llvm/Analysis/ScalarEvolution.h b/llvm/include/llvm/Analysis/ScalarEvolution.h index fd380d92568..c180ce37e39 100644 --- a/llvm/include/llvm/Analysis/ScalarEvolution.h +++ b/llvm/include/llvm/Analysis/ScalarEvolution.h @@ -254,7 +254,7 @@ namespace llvm { bool implies(const SCEVPredicate *N) const override; void print(raw_ostream &OS, unsigned Depth = 0) const override; bool isAlwaysTrue() const override; - const SCEV *getExpr() const; + const SCEV *getExpr() const override; /// \brief Returns the left hand side of the equality. const SCEVUnknown *getLHS() const { return LHS; } @@ -298,7 +298,7 @@ namespace llvm { /// Implementation of the SCEVPredicate interface bool isAlwaysTrue() const override; bool implies(const SCEVPredicate *N) const override; - void print(raw_ostream &OS, unsigned Depth) const; + void print(raw_ostream &OS, unsigned Depth) const override; const SCEV *getExpr() const override; /// \brief We estimate the complexity of a union predicate as the size |