[llvm] [DirectX] only allow intrinsics defined in DXIL.td (PR #128613)

Deric Cheung via llvm-commits llvm-commits at lists.llvm.org
Tue Feb 25 12:42:16 PST 2025


================
@@ -286,7 +286,7 @@ declare <3 x half> @llvm.dx.nclamp.v3f16(<3 x half>, <3 x half>, <3 x half>)
 declare <4 x float> @llvm.dx.nclamp.v4f32(<4 x float>, <4 x float>, <4 x float>)
 declare <2 x double> @llvm.dx.nclamp.v2f64(<2 x double>, <2 x double>, <2 x double>)
 declare <4 x i32> @llvm.dx.sclamp.v4i32(<4 x i32>, <4 x i32>, <4 x i32>)
-declare <3 x i16> @llvm.dx.uclamp.v3i32(<3 x i16>, <3 x i32>, <3 x i16>)
+declare <3 x i16> @llvm.dx.uclamp.v3i16(<3 x i16>, <3 x i16>, <3 x i16>)
----------------
Icohedron wrote:

It's just to make the declaration match the function that is actually used. 
I think this is an NFC. We could remove the declarations and the test would still be fine.
I don't see harm in including this change.

https://github.com/llvm/llvm-project/pull/128613


More information about the llvm-commits mailing list