rename addComment -> AddComment for consistency.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94190 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/MC/MCAsmStreamer.cpp b/lib/MC/MCAsmStreamer.cpp
index 548e96b..2c2fb0e 100644
--- a/lib/MC/MCAsmStreamer.cpp
+++ b/lib/MC/MCAsmStreamer.cpp
@@ -55,11 +55,11 @@
   }
   void EmitCommentsAndEOL();
   
-  /// addComment - Add a comment that can be emitted to the generated .s
+  /// AddComment - Add a comment that can be emitted to the generated .s
   /// file if applicable as a QoI issue to make the output of the compiler
   /// more readable.  This only affects the MCAsmStreamer, and only when
   /// verbose assembly output is enabled.
-  virtual void addComment(const Twine &T);
+  virtual void AddComment(const Twine &T);
   
   /// @name MCStreamer Interface
   /// @{
@@ -106,11 +106,11 @@
 
 } // end anonymous namespace.
 
-/// addComment - Add a comment that can be emitted to the generated .s
+/// AddComment - Add a comment that can be emitted to the generated .s
 /// file if applicable as a QoI issue to make the output of the compiler
 /// more readable.  This only affects the MCAsmStreamer, and only when
 /// verbose assembly output is enabled.
-void MCAsmStreamer::addComment(const Twine &T) {
+void MCAsmStreamer::AddComment(const Twine &T) {
   if (!IsVerboseAsm) return;
   // Each comment goes on its own line.
   if (!CommentToEmit.empty())