[llvm] r202963 - Add missing parenthesis in SCEV comment
Tobias Grosser
tobias at grosser.es
Wed Mar 5 02:37:17 PST 2014
Author: grosser
Date: Wed Mar 5 04:37:17 2014
New Revision: 202963
URL: http://llvm.org/viewvc/llvm-project?rev=202963&view=rev
Log:
Add missing parenthesis in SCEV comment
Contributed-by: Michael Zolutukin <mzolotukhin at apple.com>
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=202963&r1=202962&r2=202963&view=diff
==============================================================================
--- llvm/trunk/lib/Analysis/ScalarEvolution.cpp (original)
+++ llvm/trunk/lib/Analysis/ScalarEvolution.cpp Wed Mar 5 04:37:17 2014
@@ -1360,7 +1360,7 @@ const SCEV *ScalarEvolution::getAnyExten
/// what it does, given a sequence of operands that would form an add
/// expression like this:
///
-/// m + n + 13 + (A * (o + p + (B * q + m + 29))) + r + (-1 * r)
+/// m + n + 13 + (A * (o + p + (B * (q + m + 29)))) + r + (-1 * r)
///
/// where A and B are constants, update the map with these values:
///
More information about the llvm-commits
mailing list