From b11c17a48bff11afac18734b5e42863c3a706fe9 Mon Sep 17 00:00:00 2001 From: Violet Date: Mon, 8 Sep 2025 09:49:59 -0700 Subject: [PATCH] Fix const_ident.ll (#497) Minor fix to .ptx was not updated in .ll --- ptx/src/test/ll/const_ident.ll | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ptx/src/test/ll/const_ident.ll b/ptx/src/test/ll/const_ident.ll index 6d87efd..c927ef8 100644 --- a/ptx/src/test/ll/const_ident.ll +++ b/ptx/src/test/ll/const_ident.ll @@ -1,6 +1,6 @@ @x = addrspace(4) global i64 1 @y = addrspace(4) global [4 x i64] [i64 4, i64 5, i64 6, i64 0] -@constparams = addrspace(4) global [4 x i64] [i64 ptrtoint (ptr addrspace(4) @x to i64), i64 ptrtoint (ptr addrspace(4) @y to i64), i64 0, i64 0] +@constparams = addrspace(4) global [4 x i64] [i64 ptrtoint (ptr addrspace(4) @x to i64), i64 ptrtoint (ptr addrspace(4) @y to i64)] define amdgpu_kernel void @const_ident(ptr addrspace(4) byref(i64) %"49", ptr addrspace(4) byref(i64) %"50") #0 { %"51" = alloca i64, align 8, addrspace(5) @@ -52,4 +52,4 @@ define amdgpu_kernel void @const_ident(ptr addrspace(4) byref(i64) %"49", ptr ad ret void } -attributes #0 = { "amdgpu-unsafe-fp-atomics"="true" "denormal-fp-math"="preserve-sign" "denormal-fp-math-f32"="preserve-sign" "no-trapping-math"="true" "uniform-work-group-size"="true" } \ No newline at end of file +attributes #0 = { "amdgpu-unsafe-fp-atomics"="true" "denormal-fp-math"="preserve-sign" "denormal-fp-math-f32"="preserve-sign" "no-trapping-math"="true" "uniform-work-group-size"="true" }