From: Chris Lattner Date: Tue, 27 Sep 2005 21:10:32 +0000 (+0000) Subject: Make the pass name simpler X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=fe15830f962bb7fef046203a77d438d087772b34;p=oota-llvm.git Make the pass name simpler git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23476 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/Scalar/LoopStrengthReduce.cpp b/lib/Transforms/Scalar/LoopStrengthReduce.cpp index 8c66e262e40..82931726bce 100644 --- a/lib/Transforms/Scalar/LoopStrengthReduce.cpp +++ b/lib/Transforms/Scalar/LoopStrengthReduce.cpp @@ -152,7 +152,7 @@ private: void DeleteTriviallyDeadInstructions(std::set &Insts); }; RegisterOpt X("loop-reduce", - "Strength Reduce GEP Uses of Ind. Vars"); + "Loop Strength Reduction"); } FunctionPass *llvm::createLoopStrengthReducePass(unsigned MaxTargetAMSize) {