From: Bill Wendling Date: Mon, 7 Jul 2008 05:42:27 +0000 (+0000) Subject: Prevent option name conflict. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=8870ce951d3f545edc8a5ce89ce3e7cdbf38eb25;p=oota-llvm.git 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 7f48ab5499f..758f42a3f5d 100644 --- a/lib/CodeGen/MachineLICM.cpp +++ b/lib/CodeGen/MachineLICM.cpp @@ -154,7 +154,7 @@ namespace { char MachineLICM::ID = 0; static RegisterPass -X("machine-licm", "Machine Loop Invariant Code Motion"); +X("machinelicm", "Machine Loop Invariant Code Motion"); FunctionPass *llvm::createMachineLICMPass() { return new MachineLICM(); }