[llvm] r344051 - Fix function case.

Guillaume Chatelet via llvm-commits llvm-commits at lists.llvm.org
Tue Oct 9 07:51:33 PDT 2018


Author: gchatelet
Date: Tue Oct  9 07:51:33 2018
New Revision: 344051

URL: http://llvm.org/viewvc/llvm-project?rev=344051&view=rev
Log:
Fix function case.

Modified:
    llvm/trunk/tools/llvm-exegesis/lib/MCInstrDescView.cpp
    llvm/trunk/tools/llvm-exegesis/lib/MCInstrDescView.h

Modified: llvm/trunk/tools/llvm-exegesis/lib/MCInstrDescView.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/llvm-exegesis/lib/MCInstrDescView.cpp?rev=344051&r1=344050&r2=344051&view=diff
==============================================================================
--- llvm/trunk/tools/llvm-exegesis/lib/MCInstrDescView.cpp (original)
+++ llvm/trunk/tools/llvm-exegesis/lib/MCInstrDescView.cpp Tue Oct  9 07:51:33 2018
@@ -184,7 +184,7 @@ bool Instruction::hasAliasingRegisters()
   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();

Modified: llvm/trunk/tools/llvm-exegesis/lib/MCInstrDescView.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/llvm-exegesis/lib/MCInstrDescView.h?rev=344051&r1=344050&r2=344051&view=diff
==============================================================================
--- llvm/trunk/tools/llvm-exegesis/lib/MCInstrDescView.h (original)
+++ llvm/trunk/tools/llvm-exegesis/lib/MCInstrDescView.h Tue Oct  9 07:51:33 2018
@@ -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.




More information about the llvm-commits mailing list