Fix function case.

llvm-svn: 344051
This commit is contained in:
Guillaume Chatelet 2018-10-09 14:51:33 +00:00
parent 547d2dd1dd
commit 22cccffa06
2 changed files with 2 additions and 2 deletions

View File

@ -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();

View File

@ -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.