diff options
author | Adam Nemet <anemet@apple.com> | 2016-06-16 08:26:56 +0000 |
---|---|---|
committer | Adam Nemet <anemet@apple.com> | 2016-06-16 08:26:56 +0000 |
commit | bdbc5227ce8b57637da6ac0c4f52c29c0d311eeb (patch) | |
tree | 7e8e8b1f516725fac62a89fa2458a68bc51c526e /llvm/lib/Transforms/Scalar/LoopDistribute.cpp | |
parent | e27a4f96fa1faceac9019c4f9ffa867de0ab42ae (diff) | |
download | llvm-bdbc5227ce8b57637da6ac0c4f52c29c0d311eeb.zip llvm-bdbc5227ce8b57637da6ac0c4f52c29c0d311eeb.tar.gz llvm-bdbc5227ce8b57637da6ac0c4f52c29c0d311eeb.tar.bz2 |
[LAA] Default getInfo to not speculate symbolic strides. NFC
Soon we won't be passing Strides to getInfo and then we'll have fewer
call sites to update.
llvm-svn: 272878
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 48405a2..a62a44b 100644 --- a/llvm/lib/Transforms/Scalar/LoopDistribute.cpp +++ b/llvm/lib/Transforms/Scalar/LoopDistribute.cpp @@ -608,7 +608,7 @@ public: return fail("multiple exit blocks"); // LAA will check that we only have a single exiting block. - LAI = &LAA->getInfo(L, ValueToValueMap()); + LAI = &LAA->getInfo(L); // Currently, we only distribute to isolate the part of the loop with // dependence cycles to enable partial vectorization. |