[PATCH] D75589: [MLIR][Affine][NFC] Expose expandAffineMap

Frank Laub via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Wed Mar 4 13:30:33 PST 2020


flaub updated this revision to Diff 248302.
flaub added a comment.

Fix formatting


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D75589/new/

https://reviews.llvm.org/D75589

Files:
  mlir/lib/Conversion/AffineToStandard/AffineToStandard.cpp


Index: mlir/lib/Conversion/AffineToStandard/AffineToStandard.cpp
===================================================================
--- mlir/lib/Conversion/AffineToStandard/AffineToStandard.cpp
+++ mlir/lib/Conversion/AffineToStandard/AffineToStandard.cpp
@@ -42,8 +42,7 @@
       : builder(builder), dimValues(dimValues), symbolValues(symbolValues),
         loc(loc) {}
 
-  template <typename OpTy>
-  Value buildBinaryExpr(AffineBinaryOpExpr expr) {
+  template <typename OpTy> Value buildBinaryExpr(AffineBinaryOpExpr expr) {
     auto lhs = visit(expr.getLHS());
     auto rhs = visit(expr.getRHS());
     if (!lhs || !rhs)


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D75589.248302.patch
Type: text/x-patch
Size: 631 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20200304/e2fceaa3/attachment.bin>


More information about the llvm-commits mailing list