Add missing override keywords.

llvm-svn: 222634
This commit is contained in:
Craig Topper 2014-11-23 09:40:13 +00:00
parent ca331bef51
commit 8c5128bf1b
1 changed files with 2 additions and 2 deletions

View File

@ -111,8 +111,8 @@ public:
Type *Ty) const override;
unsigned getIntImmCost(Intrinsic::ID IID, unsigned Idx, const APInt &Imm,
Type *Ty) const override;
bool isLegalPredicatedLoad (Type *DataType, int Consecutive) const;
bool isLegalPredicatedStore(Type *DataType, int Consecutive) const;
bool isLegalPredicatedLoad (Type *DataType, int Consecutive) const override;
bool isLegalPredicatedStore(Type *DataType, int Consecutive) const override;
/// @}
};