[PATCH] D72435: [mlir] fix test failure in EDSC/builder-api-test
Hiroshi Inoue via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Jan 9 05:12:23 PST 2020
This revision was automatically updated to reflect the committed changes.
Closed by commit rG4a83f1e171b7: [mlir] fix test failure in EDSC/builder-api-test (authored by inouehrs).
Herald added a project: LLVM.
Herald added a subscriber: llvm-commits.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D72435/new/
https://reviews.llvm.org/D72435
Files:
mlir/test/EDSC/builder-api-test.cpp
Index: mlir/test/EDSC/builder-api-test.cpp
===================================================================
--- mlir/test/EDSC/builder-api-test.cpp
+++ mlir/test/EDSC/builder-api-test.cpp
@@ -724,9 +724,10 @@
// clang-format on
// clang-format off
- // CHECK-LABEL: func @indirect_access(
- // CHECK: [[B:%.*]] = affine.load
- // CHECK: [[D:%.*]] = affine.load
+ // CHECK-LABEL: func @indirect_access
+ // CHECK-SAME: (%[[ARG0:.*]]: memref<?xf32>, %[[ARG1:.*]]: memref<?xf32>, %[[ARG2:.*]]: memref<?xf32>, %[[ARG3:.*]]: memref<?xf32>)
+ // CHECK-DAG: [[B:%.*]] = affine.load %[[ARG1]]
+ // CHECK-DAG: [[D:%.*]] = affine.load %[[ARG3]]
// CHECK: load %{{.*}}{{\[}}[[B]]{{\]}}
// CHECK: store %{{.*}}, %{{.*}}{{\[}}[[D]]{{\]}}
// clang-format on
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D72435.237030.patch
Type: text/x-patch
Size: 777 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20200109/b05c7249/attachment.bin>
More information about the llvm-commits
mailing list