mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-03 02:31:26 +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:
parent
99ccb1fae7
commit
94a03fcf38
@ -350,7 +350,7 @@ public:
|
||||
|
||||
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
|
||||
/// 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 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
|
||||
/// than a pair of fmul and fadd instructions. fmuladd intrinsics will be
|
||||
|
@ -411,7 +411,7 @@ private:
|
||||
|
||||
ConstraintType
|
||||
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.
|
||||
/// 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.
|
||||
}
|
||||
|
||||
unsigned getRegisterByName(const char* RegName) const;
|
||||
unsigned getRegisterByName(const char* RegName) const override;
|
||||
|
||||
/// createFastISel - This method returns a target specific FastISel object,
|
||||
/// or null if the target does not support "fast" ISel.
|
||||
|
Loading…
x
Reference in New Issue
Block a user