summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorTobias Grosser <tobias@grosser.es>2014-03-05 10:37:17 +0000
committerTobias Grosser <tobias@grosser.es>2014-03-05 10:37:17 +0000
commitda55d20166a558c8b1a9b74f274c91a86245765c (patch)
treeeb5362e8a88d4dad8a6394c985b56c88b234058b /lib
parentf8aca1d3f1a4ab7d5a718aa5e0b5d34d38e948e7 (diff)
downloadllvm-da55d20166a558c8b1a9b74f274c91a86245765c.tar.gz
llvm-da55d20166a558c8b1a9b74f274c91a86245765c.tar.bz2
llvm-da55d20166a558c8b1a9b74f274c91a86245765c.tar.xz
Add missing parenthesis in SCEV comment
Contributed-by: Michael Zolutukin <mzolotukhin@apple.com> git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@202963 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Analysis/ScalarEvolution.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/ScalarEvolution.cpp b/lib/Analysis/ScalarEvolution.cpp
index c19cb03739..fea979d78e 100644
--- a/lib/Analysis/ScalarEvolution.cpp
+++ b/lib/Analysis/ScalarEvolution.cpp
@@ -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:
///