diff options
author | Michael Zolotukhin <mzolotukhin@apple.com> | 2016-10-05 00:44:52 +0000 |
---|---|---|
committer | Michael Zolotukhin <mzolotukhin@apple.com> | 2016-10-05 00:44:52 +0000 |
commit | 5cda89ad36becad45813524be0033d07d234754e (patch) | |
tree | f497846cf122550ee3d9b4d2467c338086e85f67 /llvm/lib/Transforms/Scalar/LoopDistribute.cpp | |
parent | 32b297a42fa8ce8e2018356341401c92a72e8f27 (diff) | |
download | bcm5719-llvm-5cda89ad36becad45813524be0033d07d234754e.tar.gz bcm5719-llvm-5cda89ad36becad45813524be0033d07d234754e.zip |
[LoopDistribute] Fix a typo in the pass name.
llvm-svn: 283282
Diffstat (limited to 'llvm/lib/Transforms/Scalar/LoopDistribute.cpp')
-rw-r--r-- | llvm/lib/Transforms/Scalar/LoopDistribute.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Scalar/LoopDistribute.cpp b/llvm/lib/Transforms/Scalar/LoopDistribute.cpp index 93c69185eca..a92ce04e598 100644 --- a/llvm/lib/Transforms/Scalar/LoopDistribute.cpp +++ b/llvm/lib/Transforms/Scalar/LoopDistribute.cpp @@ -981,7 +981,7 @@ PreservedAnalyses LoopDistributePass::run(Function &F, } 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) |