Fix function case.
authorGuillaume Chatelet <gchatelet@google.com>
Tue, 9 Oct 2018 14:51:33 +0000 (14:51 +0000)
committerGuillaume Chatelet <gchatelet@google.com>
Tue, 9 Oct 2018 14:51:33 +0000 (14:51 +0000)
llvm-svn: 344051

llvm/tools/llvm-exegesis/lib/MCInstrDescView.cpp
llvm/tools/llvm-exegesis/lib/MCInstrDescView.h

index bb7b8df..2f09bc1 100644 (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();
index a300f80..511ed82 100644 (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.