diff options
author | Sanjoy Das <sanjoy@playingwithpointers.com> | 2015-10-02 23:43:32 +0000 |
---|---|---|
committer | Sanjoy Das <sanjoy@playingwithpointers.com> | 2015-10-02 23:43:32 +0000 |
commit | 5b92acea2b2fd836ed45b91434213b09797f0944 (patch) | |
tree | 95475512ef9b9e3777d43c2d10fa64854bfb06d4 /llvm/lib | |
parent | e39fec5b0664c10ef5ebcb2a84bb4d7dcd807e1a (diff) | |
download | bcm5719-llvm-5b92acea2b2fd836ed45b91434213b09797f0944.tar.gz bcm5719-llvm-5b92acea2b2fd836ed45b91434213b09797f0944.zip |
Try to appease the MSVC bots, NFC.
llvm-svn: 249216
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Analysis/ScalarEvolution.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/ScalarEvolution.cpp b/llvm/lib/Analysis/ScalarEvolution.cpp index 55b633e5545..2e5021c139a 100644 --- a/llvm/lib/Analysis/ScalarEvolution.cpp +++ b/llvm/lib/Analysis/ScalarEvolution.cpp @@ -3826,7 +3826,8 @@ const SCEV *ScalarEvolution::createNodeFromSelectLikePHI(PHINode *PN) { 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(); |