blob: 4b5bee174e84fd5d313a617a40e9194e0240d391 [file] [log] [blame]
// 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
}