From 22cccffa06ad055a47e0d72c0de70a9131ed2943 Mon Sep 17 00:00:00 2001 From: Guillaume Chatelet Date: Tue, 9 Oct 2018 14:51:33 +0000 Subject: [PATCH] Fix function case. llvm-svn: 344051 --- llvm/tools/llvm-exegesis/lib/MCInstrDescView.cpp | 2 +- llvm/tools/llvm-exegesis/lib/MCInstrDescView.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/llvm/tools/llvm-exegesis/lib/MCInstrDescView.cpp b/llvm/tools/llvm-exegesis/lib/MCInstrDescView.cpp index bb7b8df..2f09bc1 100644 --- a/llvm/tools/llvm-exegesis/lib/MCInstrDescView.cpp +++ b/llvm/tools/llvm-exegesis/lib/MCInstrDescView.cpp @@ -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(); diff --git a/llvm/tools/llvm-exegesis/lib/MCInstrDescView.h b/llvm/tools/llvm-exegesis/lib/MCInstrDescView.h index a300f80..511ed82 100644 --- a/llvm/tools/llvm-exegesis/lib/MCInstrDescView.h +++ b/llvm/tools/llvm-exegesis/lib/MCInstrDescView.h @@ -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. -- 2.7.4