[llvm] [NVPTX] Regenerate check lines (NFC) (PR #207684)

Antonio Frighetto via llvm-commits llvm-commits at lists.llvm.org
Mon Jul 6 02:05:04 PDT 2026


https://github.com/antoniofrighetto created https://github.com/llvm/llvm-project/pull/207684

llvm-nvptx-nvidia-ubuntu buildbots were previously failing, appeared after https://github.com/llvm/llvm-project/pull/207099.

>From ffd7f947d5469423f27046cca4d16d027a022cb4 Mon Sep 17 00:00:00 2001
From: Antonio Frighetto <me at antoniofrighetto.com>
Date: Mon, 6 Jul 2026 10:59:25 +0200
Subject: [PATCH] [NVPTX] Regenerate check lines (NFC)

llvm-nvptx-nvidia-ubuntu buildbots were previously failing,
appeared after https://github.com/llvm/llvm-project/pull/207099.
---
 llvm/test/Verifier/NVPTX/tensormap-replace.ll | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

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