diff options
author | Johannes Doerfert <doerfert@cs.uni-saarland.de> | 2016-03-24 13:16:49 +0000 |
---|---|---|
committer | Johannes Doerfert <doerfert@cs.uni-saarland.de> | 2016-03-24 13:16:49 +0000 |
commit | 13d5d5b184b09535c0df8773a7c852354307d64a (patch) | |
tree | 0fa6722a32c4b7052173a52fe287dae9c01ccad9 | |
parent | 5432287badf34d6efab269ba238ac38e82ecebaa (diff) | |
download | bcm5719-llvm-13d5d5b184b09535c0df8773a7c852354307d64a.tar.gz bcm5719-llvm-13d5d5b184b09535c0df8773a7c852354307d64a.zip |
Remove weird comment [NFC]
llvm-svn: 264268
-rw-r--r-- | polly/lib/Analysis/ScopDetection.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/polly/lib/Analysis/ScopDetection.cpp b/polly/lib/Analysis/ScopDetection.cpp index 024f87e6aa6..2ceb3fa62dc 100644 --- a/polly/lib/Analysis/ScopDetection.cpp +++ b/polly/lib/Analysis/ScopDetection.cpp @@ -575,8 +575,7 @@ bool ScopDetection::isInvariant(const Value &Val, const Region &Reg) const { // When Val is a Phi node, it is likely not invariant. We do not check whether // Phi nodes are actually invariant, we assume that Phi nodes are usually not - // invariant. Recursively checking the operators of Phi nodes would lead to - // infinite recursion. + // invariant. if (isa<PHINode>(*I)) return false; |