diff options
author | Matt Arsenault <Matthew.Arsenault@amd.com> | 2025-03-13 13:43:48 +0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-13 13:43:48 +0700 |
commit | 9e91725fd4d4ee30e98ab2682f93b423590a4ade (patch) | |
tree | 40024b23fd2b4f7555626dc081fda58047ffb7b3 /llvm | |
parent | 26ae98c4d73d13f973eeb8450e0f5c7d1cd25993 (diff) | |
download | llvm-9e91725fd4d4ee30e98ab2682f93b423590a4ade.zip llvm-9e91725fd4d4ee30e98ab2682f93b423590a4ade.tar.gz llvm-9e91725fd4d4ee30e98ab2682f93b423590a4ade.tar.bz2 |
AMDGPU: Replace some undef uses in test metadata with poison (#131052)
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/test/CodeGen/AMDGPU/hsa-metadata-from-llvm-ir-full.ll | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/llvm/test/CodeGen/AMDGPU/hsa-metadata-from-llvm-ir-full.ll b/llvm/test/CodeGen/AMDGPU/hsa-metadata-from-llvm-ir-full.ll index 692a33b..834b381 100644 --- a/llvm/test/CodeGen/AMDGPU/hsa-metadata-from-llvm-ir-full.ll +++ b/llvm/test/CodeGen/AMDGPU/hsa-metadata-from-llvm-ir-full.ll @@ -1779,7 +1779,7 @@ attributes #3 = { optnone noinline "amdgpu-no-completion-action" "amdgpu-no-defa !2 = !{!"none"} !3 = !{!"int"} !4 = !{!""} -!5 = !{i32 undef, i32 1} +!5 = !{i32 poison, i32 1} !6 = !{i32 1, i32 2, i32 4} !7 = !{<4 x i32> poison, i32 0} !8 = !{i32 8, i32 16, i32 32} @@ -1800,13 +1800,13 @@ attributes #3 = { optnone noinline "amdgpu-no-completion-action" "amdgpu-no-defa !23 = !{!"none", !"none", !"none"} !24 = !{!"int", !"short2", !"char3"} !25 = !{!"", !"", !""} -!26 = !{half undef, i32 1} -!27 = !{float undef, i32 1} -!28 = !{double undef, i32 1} -!29 = !{i8 undef, i32 1} -!30 = !{i16 undef, i32 1} -!31 = !{i64 undef, i32 1} -!32 = !{ptr addrspace(5) undef, i32 1} +!26 = !{half poison, i32 1} +!27 = !{float poison, i32 1} +!28 = !{double poison, i32 1} +!29 = !{i8 poison, i32 1} +!30 = !{i16 poison, i32 1} +!31 = !{i64 poison, i32 1} +!32 = !{ptr addrspace(5) poison, i32 1} !50 = !{i32 1, i32 2, i32 3} !51 = !{!"int addrspace(5)*", !"int addrspace(5)*", !"int addrspace(5)*"} !60 = !{i32 1, i32 1, i32 1} |