From 04a78b6099afb15f85e4f9926bb8c513d5a48aff Mon Sep 17 00:00:00 2001 From: Florian Hahn Date: Thu, 7 Feb 2019 21:23:37 +0000 Subject: [PATCH] [LV] Remove unnecessary assignment to UserIC. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@353469 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Transforms/Vectorize/LoopVectorize.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/Transforms/Vectorize/LoopVectorize.cpp b/lib/Transforms/Vectorize/LoopVectorize.cpp index 93287954d9d..2eb5e474ddc 100644 --- a/lib/Transforms/Vectorize/LoopVectorize.cpp +++ b/lib/Transforms/Vectorize/LoopVectorize.cpp @@ -7357,7 +7357,6 @@ bool LoopVectorizePass::processLoop(Loop *L) { "InterleavingAvoided", "Ignoring UserIC, because interleaving was avoided up front"); InterleaveLoop = false; - UserIC = 1; } else if (IC == 1 && UserIC <= 1) { // Tell the user interleaving is not beneficial. LLVM_DEBUG(dbgs() << "LV: Interleaving is not beneficial.\n"); -- 2.50.1