From 8870ce951d3f545edc8a5ce89ce3e7cdbf38eb25 Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Mon, 7 Jul 2008 05:42:27 +0000 Subject: [PATCH] Prevent option name conflict. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@53166 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/CodeGen/MachineLICM.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); }