diff options
Diffstat (limited to 'lib/Expr/ArrayExprRewriter.cpp')
| -rw-r--r-- | lib/Expr/ArrayExprRewriter.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/Expr/ArrayExprRewriter.cpp b/lib/Expr/ArrayExprRewriter.cpp index 4de76d43..2732cdc4 100644 --- a/lib/Expr/ArrayExprRewriter.cpp +++ b/lib/Expr/ArrayExprRewriter.cpp @@ -44,12 +44,11 @@ ref<Expr> ExprRewriter::rewrite(const ref<Expr> &e, const array2idx_ty &arrays, "Read is not aligned"); Expr::Width width = idxt_v.getWidth() / element.first->range; - if (!idxt_v.getMul().isNull()) { + if (auto e = idxt_v.getMul()) { // If we have a MulExpr in the index, we can optimize our search by // skipping all those indexes that are not multiple of such value. // In fact, they will be rejected by the MulExpr interpreter since it // will not find any integer solution - auto e = idxt_v.getMul(); auto ce = dyn_cast<ConstantExpr>(e); assert(ce && "Not a constant expression"); |
