Add missing override keywords.
authorCraig Topper <craig.topper@gmail.com>
Sun, 23 Nov 2014 09:40:13 +0000 (09:40 +0000)
committerCraig Topper <craig.topper@gmail.com>
Sun, 23 Nov 2014 09:40:13 +0000 (09:40 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@222634 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/X86/X86TargetTransformInfo.cpp

index 1811a20..432ceda 100644 (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;
 
   /// @}
 };