From: Craig Topper Date: Sun, 23 Nov 2014 09:40:13 +0000 (+0000) Subject: Add missing override keywords. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=71777d18adaefa3aa9e6c0874835ca45ff636f72;p=oota-llvm.git Add missing override keywords. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@222634 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/X86/X86TargetTransformInfo.cpp b/lib/Target/X86/X86TargetTransformInfo.cpp index 1811a205284..432cedaa803 100644 --- a/lib/Target/X86/X86TargetTransformInfo.cpp +++ b/lib/Target/X86/X86TargetTransformInfo.cpp @@ -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; /// @} };