[llvm] r283282 - [LoopDistribute] Fix a typo in the pass name.

Michael Zolotukhin via llvm-commits llvm-commits at lists.llvm.org
Tue Oct 4 17:44:52 PDT 2016


Author: mzolotukhin
Date: Tue Oct  4 19:44:52 2016
New Revision: 283282

URL: http://llvm.org/viewvc/llvm-project?rev=283282&view=rev
Log:
[LoopDistribute] Fix a typo in the pass name.

Modified:
    llvm/trunk/lib/Transforms/Scalar/LoopDistribute.cpp

Modified: llvm/trunk/lib/Transforms/Scalar/LoopDistribute.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/Scalar/LoopDistribute.cpp?rev=283282&r1=283281&r2=283282&view=diff
==============================================================================
--- llvm/trunk/lib/Transforms/Scalar/LoopDistribute.cpp (original)
+++ llvm/trunk/lib/Transforms/Scalar/LoopDistribute.cpp Tue Oct  4 19:44:52 2016
@@ -981,7 +981,7 @@ PreservedAnalyses LoopDistributePass::ru
 }
 
 char LoopDistributeLegacy::ID;
-static const char ldist_name[] = "Loop Distribition";
+static const char ldist_name[] = "Loop Distribution";
 
 INITIALIZE_PASS_BEGIN(LoopDistributeLegacy, LDIST_NAME, ldist_name, false,
                       false)




More information about the llvm-commits mailing list