mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-25 13:24:46 +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:
@@ -395,19 +395,21 @@ public:
|
||||
|
||||
/// isPredicable - Returns true if the instruction is already predicated.
|
||||
///
|
||||
virtual bool isPredicated(MachineInstr *MI) const {
|
||||
virtual bool isPredicated(const MachineInstr *MI) const {
|
||||
return false;
|
||||
}
|
||||
|
||||
/// PredicateInstruction - Convert the instruction into a predicated
|
||||
/// instruction. It returns true if the operation was successful.
|
||||
virtual bool PredicateInstruction(MachineInstr *MI,
|
||||
std::vector<MachineOperand> &Pred) const;
|
||||
virtual
|
||||
bool PredicateInstruction(MachineInstr *MI,
|
||||
const std::vector<MachineOperand> &Pred) const;
|
||||
|
||||
/// SubsumesPredicate - Returns true if the first specified predicated
|
||||
/// subsumes the second, e.g. GE subsumes GT.
|
||||
virtual bool SubsumesPredicate(std::vector<MachineOperand> &Pred1,
|
||||
std::vector<MachineOperand> &Pred2) const {
|
||||
virtual
|
||||
bool SubsumesPredicate(const std::vector<MachineOperand> &Pred1,
|
||||
const std::vector<MachineOperand> &Pred2) const {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user