mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-13 04:38:24 +00:00
Add missing const qualifiers.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37341 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -415,15 +415,16 @@ public:
|
||||
/// findRegisterUseOperandIdx() - Returns the operand index that is a use of
|
||||
/// the specific register or -1 if it is not found. It further tightening
|
||||
/// the search criteria to a use that kills the register if isKill is true.
|
||||
int findRegisterUseOperandIdx(unsigned Reg, bool isKill = false);
|
||||
int findRegisterUseOperandIdx(unsigned Reg, bool isKill = false) const;
|
||||
|
||||
/// findRegisterDefOperand() - Returns the MachineOperand that is a def of
|
||||
/// the specific register or NULL if it is not found.
|
||||
MachineOperand *findRegisterDefOperand(unsigned Reg);
|
||||
|
||||
/// findFirstPredOperand() - Find the first operand in the operand list that
|
||||
// is used to represent the predicate.
|
||||
MachineOperand *findFirstPredOperand();
|
||||
/// findFirstPredOperandIdx() - Find the index of the first operand in the
|
||||
/// operand list that is used to represent the predicate. It returns -1 if
|
||||
/// none is found.
|
||||
int findFirstPredOperandIdx() const;
|
||||
|
||||
/// copyKillDeadInfo - Copies kill / dead operand properties from MI.
|
||||
///
|
||||
|
Reference in New Issue
Block a user