[llvm] 672342f - [NVPTX] Regenerate check lines (NFC) (#207684)
via llvm-commits
llvm-commits at lists.llvm.org
Mon Jul 6 02:05:22 PDT 2026
Author: Antonio Frighetto
Date: 2026-07-06T11:05:18+02:00
New Revision: 672342f104a17a49f1286e5852fd0a9799c457fb
URL: https://github.com/llvm/llvm-project/commit/672342f104a17a49f1286e5852fd0a9799c457fb
DIFF: https://github.com/llvm/llvm-project/commit/672342f104a17a49f1286e5852fd0a9799c457fb.diff
LOG: [NVPTX] Regenerate check lines (NFC) (#207684)
llvm-nvptx-nvidia-ubuntu buildbots were previously failing, appeared
after https://github.com/llvm/llvm-project/pull/207099.
Added:
Modified:
llvm/test/Verifier/NVPTX/tensormap-replace.ll
Removed:
################################################################################
diff --git a/llvm/test/Verifier/NVPTX/tensormap-replace.ll b/llvm/test/Verifier/NVPTX/tensormap-replace.ll
index 223dbadcf4711..5c2a6476c3f01 100644
--- a/llvm/test/Verifier/NVPTX/tensormap-replace.ll
+++ b/llvm/test/Verifier/NVPTX/tensormap-replace.ll
@@ -10,16 +10,16 @@ declare void @llvm.nvvm.tensormap.replace.element.stride.p1(ptr addrspace(1) %ad
declare void @llvm.nvvm.tensormap.replace.global.stride.p1(ptr addrspace(1) %addr, i32 immarg %ord, i64 %new_value)
define void @test_tensormap_replace_ord_out_of_range(ptr addrspace(1) %addr, i32 %v32, i64 %v64) {
- ; CHECK: immarg value 5 out of range [0, 5)
+ ; CHECK: immarg value 5 for arg 1 out of range [0,5)
call void @llvm.nvvm.tensormap.replace.box.dim.p1(ptr addrspace(1) %addr, i32 5, i32 %v32)
- ; CHECK: immarg value 6 out of range [0, 5)
+ ; CHECK: immarg value 6 for arg 1 out of range [0,5)
call void @llvm.nvvm.tensormap.replace.global.dim.p1(ptr addrspace(1) %addr, i32 6, i32 %v32)
- ; CHECK: immarg value 5 out of range [0, 5)
+ ; CHECK: immarg value 5 for arg 1 out of range [0,5)
call void @llvm.nvvm.tensormap.replace.element.stride.p1(ptr addrspace(1) %addr, i32 5, i32 %v32)
- ; CHECK: immarg value 6 out of range [0, 5)
+ ; CHECK: immarg value 6 for arg 1 out of range [0,5)
call void @llvm.nvvm.tensormap.replace.global.stride.p1(ptr addrspace(1) %addr, i32 6, i64 %v64)
ret void
More information about the llvm-commits
mailing list