[polly] r264268 - Remove weird comment [NFC]
Johannes Doerfert via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 24 06:16:49 PDT 2016
Author: jdoerfert
Date: Thu Mar 24 08:16:49 2016
New Revision: 264268
URL: http://llvm.org/viewvc/llvm-project?rev=264268&view=rev
Log:
Remove weird comment [NFC]
Modified:
polly/trunk/lib/Analysis/ScopDetection.cpp
Modified: polly/trunk/lib/Analysis/ScopDetection.cpp
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/lib/Analysis/ScopDetection.cpp?rev=264268&r1=264267&r2=264268&view=diff
==============================================================================
--- polly/trunk/lib/Analysis/ScopDetection.cpp (original)
+++ polly/trunk/lib/Analysis/ScopDetection.cpp Thu Mar 24 08:16:49 2016
@@ -575,8 +575,7 @@ bool ScopDetection::isInvariant(const Va
// 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;
More information about the llvm-commits
mailing list