From: Tobias Grosser Date: Wed, 5 Mar 2014 10:37:17 +0000 (+0000) Subject: Add missing parenthesis in SCEV comment X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=da55d20166a558c8b1a9b74f274c91a86245765c;p=oota-llvm.git Add missing parenthesis in SCEV comment Contributed-by: Michael Zolutukin git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@202963 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Analysis/ScalarEvolution.cpp b/lib/Analysis/ScalarEvolution.cpp index c19cb037398..fea979d78e8 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: ///