[Mlir-commits] [mlir] 9c8d7a8 - [OpenACC] fix test after strict properties change (#217717)

llvmlistbot at llvm.org llvmlistbot at llvm.org
Thu Aug 20 11:21:12 PDT 2026


Author: Scott Manley
Date: 2026-08-20T18:21:07Z
New Revision: 9c8d7a86766f165757d2de09b109d07d8d734cb7

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

LOG: [OpenACC] fix test after strict properties change (#217717)

Rebased shortly after the change and didn't catch the test failure

Added: 
    

Modified: 
    mlir/test/Dialect/OpenACC/acc-compute-lowering-loop.mlir

Removed: 
    


################################################################################
diff  --git a/mlir/test/Dialect/OpenACC/acc-compute-lowering-loop.mlir b/mlir/test/Dialect/OpenACC/acc-compute-lowering-loop.mlir
index fbf6230852cc8..4da7ca8868655 100644
--- a/mlir/test/Dialect/OpenACC/acc-compute-lowering-loop.mlir
+++ b/mlir/test/Dialect/OpenACC/acc-compute-lowering-loop.mlir
@@ -252,7 +252,6 @@ func.func @orphan_loop_unroll_annotation(%buf: memref<8xi32>) {
   acc.loop control(%i : index) = (%c0 : index) to (%c8 : index) step (%c1 : index) {
     memref.store %c0_i32, %buf[%i] : memref<8xi32>
     acc.yield
-  } attributes {independent = [#acc.device_type<none>],
-                llvm.loop_annotation = #llvm.loop_annotation<unroll = <disable = false, full = true>>} 
+  } independent attributes {llvm.loop_annotation = #llvm.loop_annotation<unroll = <disable = false, full = true>>} 
   return
 }


        


More information about the Mlir-commits mailing list