diff options
author | Bill Wendling <isanbard@gmail.com> | 2008-07-07 05:42:27 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2008-07-07 05:42:27 +0000 |
commit | ecf34435f47307a565b6477ec4a8d11b16154012 (patch) | |
tree | b6d52c05ea03e1861f951ffa74f76699945e6a64 /llvm/lib/CodeGen/MachineLICM.cpp | |
parent | 2fa6cf5c2f7edb2cd823379d8c5b9e360c03dd29 (diff) | |
download | bcm5719-llvm-ecf34435f47307a565b6477ec4a8d11b16154012.tar.gz bcm5719-llvm-ecf34435f47307a565b6477ec4a8d11b16154012.zip |
Prevent option name conflict.
llvm-svn: 53166
Diffstat (limited to 'llvm/lib/CodeGen/MachineLICM.cpp')
-rw-r--r-- | llvm/lib/CodeGen/MachineLICM.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/MachineLICM.cpp b/llvm/lib/CodeGen/MachineLICM.cpp index 7f48ab5499f..758f42a3f5d 100644 --- a/llvm/lib/CodeGen/MachineLICM.cpp +++ b/llvm/lib/CodeGen/MachineLICM.cpp @@ -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(); } |