[PATCH] D78146: [MLIR] Bug fix for simplifyAffineMap
Uday Bondhugula via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Apr 14 14:05:07 PDT 2020
bondhugula added inline comments.
================
Comment at: mlir/lib/IR/AffineMap.cpp:325
}
- return AffineMap::get(map.getNumDims(), map.getNumSymbols(), exprs, map.getContext());
+ return AffineMap::get(map.getNumDims(), map.getNumSymbols(), exprs);
}
----------------
Is there an issue with the way this revision was created? The left/right panes are switched for me (the right one has the old version), and the context isn't available as well.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D78146/new/
https://reviews.llvm.org/D78146
More information about the llvm-commits
mailing list