mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-09 11:25:55 +00:00
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:
@@ -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
|
||||||
|
@@ -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
|
||||||
|
@@ -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.
|
||||||
|
@@ -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.
|
||||||
|
Reference in New Issue
Block a user