forked from OSchip/llvm-project
parent
547d2dd1dd
commit
22cccffa06
|
@ -184,7 +184,7 @@ bool Instruction::hasAliasingRegisters() const {
|
|||
return AllDefRegs.anyCommon(AllUseRegs);
|
||||
}
|
||||
|
||||
void Instruction::Dump(const llvm::MCRegisterInfo &RegInfo,
|
||||
void Instruction::dump(const llvm::MCRegisterInfo &RegInfo,
|
||||
llvm::raw_ostream &Stream) const {
|
||||
for (const auto &Op : Operands) {
|
||||
Stream << "- Op" << Op.getIndex();
|
||||
|
|
|
@ -119,7 +119,7 @@ struct Instruction {
|
|||
bool hasAliasingRegisters() const;
|
||||
|
||||
// Convenient function to help with debugging.
|
||||
void Dump(const llvm::MCRegisterInfo &RegInfo,
|
||||
void dump(const llvm::MCRegisterInfo &RegInfo,
|
||||
llvm::raw_ostream &Stream) const;
|
||||
|
||||
const llvm::MCInstrDesc *Description; // Never nullptr.
|
||||
|
|
Loading…
Reference in New Issue