Remove unnecessary null check. NFC.
authorPete Cooper <peter_cooper@apple.com>
Fri, 24 Jul 2015 21:38:01 +0000 (21:38 +0000)
committerPete Cooper <peter_cooper@apple.com>
Fri, 24 Jul 2015 21:38:01 +0000 (21:38 +0000)
Since both places which set this variable do so with dyn_cast, and not
dyn_cast_or_null, its impossible to get a nullptr here, so we can remove
the check.

llvm-svn: 243167

llvm/lib/Transforms/Scalar/LoopInterchange.cpp

index 9d7e57f..75fe0c7 100644 (file)
@@ -817,9 +817,6 @@ bool LoopInterchangeLegality::currentLimitations() {
     InnerIndexVarInc =
         dyn_cast<Instruction>(InnerInductionVar->getIncomingValue(0));
 
-  if (!InnerIndexVarInc)
-    return true;
-
   // Since we split the inner loop latch on this induction variable. Make sure
   // we do not have any instruction between the induction variable and branch
   // instruction.