[Mlir-commits] [mlir] fbc70c5 - [mlir][ArmSME] remove addressof ops to undefined symbols (NFC)

Cullen Rhodes llvmlistbot at llvm.org
Mon Nov 6 03:44:01 PST 2023


Author: Cullen Rhodes
Date: 2023-11-06T11:43:43Z
New Revision: fbc70c5a9e21cff8484e602136e5b91f20aedfbd

URL: https://github.com/llvm/llvm-project/commit/fbc70c5a9e21cff8484e602136e5b91f20aedfbd
DIFF: https://github.com/llvm/llvm-project/commit/fbc70c5a9e21cff8484e602136e5b91f20aedfbd.diff

LOG: [mlir][ArmSME] remove addressof ops to undefined symbols (NFC)

The string symbols were replaced with 'vector.print str' calls in
061d97804345 (#68973) but the addressof ops weren't removed. This was
missed as the test is currently XFAIL'ed.

Added: 
    

Modified: 
    mlir/test/Integration/Dialect/Vector/CPU/ArmSME/load-store-128-bit-tile.mlir

Removed: 
    


################################################################################
diff  --git a/mlir/test/Integration/Dialect/Vector/CPU/ArmSME/load-store-128-bit-tile.mlir b/mlir/test/Integration/Dialect/Vector/CPU/ArmSME/load-store-128-bit-tile.mlir
index 5a9fccdc31640c0..1d6125a0d7999f5 100644
--- a/mlir/test/Integration/Dialect/Vector/CPU/ArmSME/load-store-128-bit-tile.mlir
+++ b/mlir/test/Integration/Dialect/Vector/CPU/ArmSME/load-store-128-bit-tile.mlir
@@ -37,11 +37,6 @@ func.func @vector_copy_i128(%src: memref<?x?xi128>, %dst: memref<?x?xi128>) {
 }
 
 func.func @test_load_store_zaq0() {
-  %init_a_str = llvm.mlir.addressof @init_tile_a : !llvm.ptr
-  %init_b_str = llvm.mlir.addressof @init_tile_b : !llvm.ptr
-  %final_a_str = llvm.mlir.addressof @final_tile_a : !llvm.ptr
-  %final_b_str = llvm.mlir.addressof @final_tile_b : !llvm.ptr
-
   %c0 = arith.constant 0 : index
   %min_elts_q = arith.constant 1 : index
   %bytes_per_128_bit = arith.constant 16 : index


        


More information about the Mlir-commits mailing list