diff options
author | Chris Lattner <sabre@nondot.org> | 2005-09-27 21:10:32 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-09-27 21:10:32 +0000 |
commit | fe15830f962bb7fef046203a77d438d087772b34 (patch) | |
tree | d3ab1f407d3674975e5ce0269dbd4e9b741acc82 /lib/Transforms/Scalar/LoopStrengthReduce.cpp | |
parent | b94388a76ab8f514394d6e8a473c61778d96da93 (diff) |
Make the pass name simpler
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23476 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Scalar/LoopStrengthReduce.cpp')
-rw-r--r-- | lib/Transforms/Scalar/LoopStrengthReduce.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Scalar/LoopStrengthReduce.cpp b/lib/Transforms/Scalar/LoopStrengthReduce.cpp index 8c66e262e4..82931726bc 100644 --- a/lib/Transforms/Scalar/LoopStrengthReduce.cpp +++ b/lib/Transforms/Scalar/LoopStrengthReduce.cpp @@ -152,7 +152,7 @@ private: void DeleteTriviallyDeadInstructions(std::set<Instruction*> &Insts); }; RegisterOpt<LoopStrengthReduce> X("loop-reduce", - "Strength Reduce GEP Uses of Ind. Vars"); + "Loop Strength Reduction"); } FunctionPass *llvm::createLoopStrengthReducePass(unsigned MaxTargetAMSize) { |