Prevent option name conflict.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@53166 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/CodeGen/MachineLICM.cpp b/lib/CodeGen/MachineLICM.cpp
index 7f48ab5..758f42a 100644
--- a/lib/CodeGen/MachineLICM.cpp
+++ b/lib/CodeGen/MachineLICM.cpp
@@ -154,7 +154,7 @@
 
 char MachineLICM::ID = 0;
 static RegisterPass<MachineLICM>
-X("machine-licm", "Machine Loop Invariant Code Motion");
+X("machinelicm", "Machine Loop Invariant Code Motion");
 
 FunctionPass *llvm::createMachineLICMPass() { return new MachineLICM(); }