Add 'override' to getRegisterByName in *ISelLowering.h

No functionality change intended.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@208507 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Hal Finkel
2014-05-11 19:28:55 +00:00
parent 99ccb1fae7
commit 94a03fcf38
4 changed files with 4 additions and 4 deletions

View File

@@ -350,7 +350,7 @@ public:
SDValue PerformDAGCombine(SDNode *N,DAGCombinerInfo &DCI) const override; SDValue PerformDAGCombine(SDNode *N,DAGCombinerInfo &DCI) const override;
unsigned getRegisterByName(const char* RegName) const; unsigned getRegisterByName(const char* RegName) const override;
/// isFMAFasterThanFMulAndFAdd - Return true if an FMA operation is faster /// isFMAFasterThanFMulAndFAdd - Return true if an FMA operation is faster
/// than a pair of fmul and fadd instructions. fmuladd intrinsics will be /// than a pair of fmul and fadd instructions. fmuladd intrinsics will be

View File

@@ -471,7 +471,7 @@ namespace llvm {
SDValue LowerFSINCOS(SDValue Op, SelectionDAG &DAG) const; SDValue LowerFSINCOS(SDValue Op, SelectionDAG &DAG) const;
SDValue LowerDivRem(SDValue Op, SelectionDAG &DAG) const; SDValue LowerDivRem(SDValue Op, SelectionDAG &DAG) const;
unsigned getRegisterByName(const char* RegName) const; unsigned getRegisterByName(const char* RegName) const override;
/// isFMAFasterThanFMulAndFAdd - Return true if an FMA operation is faster /// isFMAFasterThanFMulAndFAdd - Return true if an FMA operation is faster
/// than a pair of fmul and fadd instructions. fmuladd intrinsics will be /// than a pair of fmul and fadd instructions. fmuladd intrinsics will be

View File

@@ -411,7 +411,7 @@ private:
ConstraintType ConstraintType
getConstraintType(const std::string &Constraint) const override; getConstraintType(const std::string &Constraint) const override;
unsigned getRegisterByName(const char* RegName) const; unsigned getRegisterByName(const char* RegName) const override;
/// Examine constraint string and operand type and determine a weight value. /// Examine constraint string and operand type and determine a weight value.
/// The operand object must already have been set up with the operand type. /// The operand object must already have been set up with the operand type.

View File

@@ -786,7 +786,7 @@ namespace llvm {
return nullptr; // nothing to do, move along. return nullptr; // nothing to do, move along.
} }
unsigned getRegisterByName(const char* RegName) const; unsigned getRegisterByName(const char* RegName) const override;
/// createFastISel - This method returns a target specific FastISel object, /// createFastISel - This method returns a target specific FastISel object,
/// or null if the target does not support "fast" ISel. /// or null if the target does not support "fast" ISel.