diff options
| author | Tobias Grosser <tobias@grosser.es> | 2014-03-05 10:37:17 +0000 |
|---|---|---|
| committer | Tobias Grosser <tobias@grosser.es> | 2014-03-05 10:37:17 +0000 |
| commit | ba49e4229c193a5e09b3f627ca2485bab722d158 (patch) | |
| tree | d594a634a81c3e500f505aeb0fff9578f9eb5a5a /llvm/lib | |
| parent | f017ec360cbc76ce8785fae484c1cd8918ce7c41 (diff) | |
| download | bcm5719-llvm-ba49e4229c193a5e09b3f627ca2485bab722d158.tar.gz bcm5719-llvm-ba49e4229c193a5e09b3f627ca2485bab722d158.zip | |
Add missing parenthesis in SCEV comment
Contributed-by: Michael Zolutukin <mzolotukhin@apple.com>
llvm-svn: 202963
Diffstat (limited to 'llvm/lib')
| -rw-r--r-- | llvm/lib/Analysis/ScalarEvolution.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/ScalarEvolution.cpp b/llvm/lib/Analysis/ScalarEvolution.cpp index c19cb037398..fea979d78e8 100644 --- a/llvm/lib/Analysis/ScalarEvolution.cpp +++ b/llvm/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: /// |

