[Mlir-commits] [mlir] 4d228e1 - [mlir][vector] Escape variable usage in test
Benjamin Kramer
llvmlistbot at llvm.org
Thu Oct 17 03:43:44 PDT 2024
Author: Benjamin Kramer
Date: 2024-10-17T12:43:32+02:00
New Revision: 4d228e1ebdd652ad3c95e64c0f1bae17145e9e1b
URL: https://github.com/llvm/llvm-project/commit/4d228e1ebdd652ad3c95e64c0f1bae17145e9e1b
DIFF: https://github.com/llvm/llvm-project/commit/4d228e1ebdd652ad3c95e64c0f1bae17145e9e1b.diff
LOG: [mlir][vector] Escape variable usage in test
Otherwise the shell might expand this in the command line.
Added:
Modified:
mlir/test/Conversion/VectorToLLVM/vector-xfer-to-llvm.mlir
Removed:
################################################################################
diff --git a/mlir/test/Conversion/VectorToLLVM/vector-xfer-to-llvm.mlir b/mlir/test/Conversion/VectorToLLVM/vector-xfer-to-llvm.mlir
index 9cfd6885fba958..8f01cc2b8d44c3 100644
--- a/mlir/test/Conversion/VectorToLLVM/vector-xfer-to-llvm.mlir
+++ b/mlir/test/Conversion/VectorToLLVM/vector-xfer-to-llvm.mlir
@@ -1,5 +1,5 @@
-// RUN: mlir-opt %s -convert-vector-to-llvm -split-input-file | FileCheck -D$IDX_TYPE=i32 %s
-// RUN: mlir-opt %s --convert-vector-to-llvm='force-32bit-vector-indices=0' | FileCheck -D$IDX_TYPE=i64 %s
+// RUN: mlir-opt %s -convert-vector-to-llvm -split-input-file | FileCheck '-D$IDX_TYPE=i32' %s
+// RUN: mlir-opt %s --convert-vector-to-llvm='force-32bit-vector-indices=0' | FileCheck '-D$IDX_TYPE=i64' %s
func.func @transfer_read_write_1d(%A : memref<?xf32>, %base: index) -> vector<17xf32> {
%f7 = arith.constant 7.0: f32
More information about the Mlir-commits
mailing list