[MCStreamer] De-capitalize EmitValue EmitIntValue{,InHex}
diff --git a/llvm/lib/MC/MCELFStreamer.cpp b/llvm/lib/MC/MCELFStreamer.cpp
index 131c1bb..b2a6978 100644
--- a/llvm/lib/MC/MCELFStreamer.cpp
+++ b/llvm/lib/MC/MCELFStreamer.cpp
@@ -368,11 +368,11 @@
   PushSection();
   SwitchSection(Comment);
   if (!SeenIdent) {
-    EmitIntValue(0, 1);
+    emitIntValue(0, 1);
     SeenIdent = true;
   }
   emitBytes(IdentString);
-  EmitIntValue(0, 1);
+  emitIntValue(0, 1);
   PopSection();
 }