diff options
author | Hideki Saito <hideki.saito@intel.com> | 2018-09-14 02:02:57 +0000 |
---|---|---|
committer | Hideki Saito <hideki.saito@intel.com> | 2018-09-14 02:02:57 +0000 |
commit | d19851ac7edaf7c6c9290a493a79d02fd18d2be3 (patch) | |
tree | fea2837c8e0f14fb857cc231205f57ad5186e64f /llvm/lib/Transforms/Vectorize/VPlan.cpp | |
parent | 05cf44346346c0308396cf59b2c7228b2b3eff30 (diff) | |
download | bcm5719-llvm-d19851ac7edaf7c6c9290a493a79d02fd18d2be3.tar.gz bcm5719-llvm-d19851ac7edaf7c6c9290a493a79d02fd18d2be3.zip |
Fix for the buildbot failure http://lab.llvm.org:8011/builders/sanitizer-x86_64-linux-fast/builds/23635
from the commit (r342197) of https://reviews.llvm.org/D50820.
llvm-svn: 342201
Diffstat (limited to 'llvm/lib/Transforms/Vectorize/VPlan.cpp')
-rw-r--r-- | llvm/lib/Transforms/Vectorize/VPlan.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/llvm/lib/Transforms/Vectorize/VPlan.cpp b/llvm/lib/Transforms/Vectorize/VPlan.cpp index 511b31a28c3..09d20fbdefe 100644 --- a/llvm/lib/Transforms/Vectorize/VPlan.cpp +++ b/llvm/lib/Transforms/Vectorize/VPlan.cpp @@ -205,10 +205,6 @@ void VPBasicBlock::execute(VPTransformState *State) { Value *IRCBV = CBV->getUnderlyingValue(); assert(IRCBV && "Unexpected null underlying value for condition bit"); - // Delete the condition bit at this point - it should be no longer needed. - delete CBV; - setCondBit(nullptr); - // Condition bit value in a VPBasicBlock is used as the branch selector. In // the VPlan-native path case, since all branches are uniform we generate a // branch instruction using the condition value from vector lane 0 and dummy |