llvm-project/mlir/test/Conversion/AffineToStandard/no-memref.mlir

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
347 B
MLIR
Raw Normal View History

// RUN: mlir-opt -lower-affine %s | FileCheck %s
// Regression test checking that the memref dialect is loaded as dependency by
// the lowering pass. We shouldn't fail trying to create memref.load here.
// CHECK-LABEL: @no_memref_op
func @no_memref_op(%arg0: memref<f32>) {
// CHECK: memref.load
affine.load %arg0[] : memref<f32>
return
}