Prevent option name conflict.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@53166 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Bill Wendling 2008-07-07 05:42:27 +00:00
parent 990f032907
commit 8870ce951d

View File

@ -154,7 +154,7 @@ namespace {
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(); }