[llvm] r249216 - Try to appease the MSVC bots, NFC.

Sanjoy Das via llvm-commits llvm-commits at lists.llvm.org
Fri Oct 2 16:43:33 PDT 2015


Author: sanjoy
Date: Fri Oct  2 18:43:32 2015
New Revision: 249216

URL: http://llvm.org/viewvc/llvm-project?rev=249216&view=rev
Log:
Try to appease the MSVC bots, NFC.

Modified:
    llvm/trunk/lib/Analysis/ScalarEvolution.cpp

Modified: llvm/trunk/lib/Analysis/ScalarEvolution.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Analysis/ScalarEvolution.cpp?rev=249216&r1=249215&r2=249216&view=diff
==============================================================================
--- llvm/trunk/lib/Analysis/ScalarEvolution.cpp (original)
+++ llvm/trunk/lib/Analysis/ScalarEvolution.cpp Fri Oct  2 18:43:32 2015
@@ -3826,7 +3826,8 @@ const SCEV *ScalarEvolution::createNodeF
           if (isa<Argument>(V))
             return false;
 
-          if (isa<Instruction>(V) && DT.dominates(cast<Instruction>(V), BB))
+          if (isa<Instruction>(V) &&
+              this->DT.dominates(cast<Instruction>(V), BB))
             return false;
 
           return setUnavailable();




More information about the llvm-commits mailing list