Add missing parenthesis in SCEV comment
authorTobias Grosser <tobias@grosser.es>
Wed, 5 Mar 2014 10:37:17 +0000 (10:37 +0000)
committerTobias Grosser <tobias@grosser.es>
Wed, 5 Mar 2014 10:37:17 +0000 (10:37 +0000)
Contributed-by: Michael Zolutukin <mzolotukhin@apple.com>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@202963 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/ScalarEvolution.cpp

index c19cb0373982f04d6707c0968d6e441e5a03a403..fea979d78e87fc17a6d04d9ad033a316cb005c35 100644 (file)
@@ -1360,7 +1360,7 @@ const SCEV *ScalarEvolution::getAnyExtendExpr(const SCEV *Op,
 /// 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:
 ///