[clang] [llvm] [HLSL] Implement the f16tof32() intrinsic (PR #165860)
Tim Corringham via llvm-commits
llvm-commits at lists.llvm.org
Tue Nov 4 09:07:18 PST 2025
================
@@ -3516,6 +3516,10 @@ bool SPIRVInstructionSelector::selectIntrinsic(Register ResVReg,
case Intrinsic::spv_resource_nonuniformindex: {
return selectResourceNonUniformIndex(ResVReg, ResType, I);
}
+ case Intrinsic::spv_unpackhalf2x16: {
+ return selectExtInst(ResVReg, ResType, I, GL::UnpackHalf2x16);
----------------
tcorringham wrote:
I didn't see this until too late - I will make a test and raise a new issue for it.
https://github.com/llvm/llvm-project/pull/165860
More information about the llvm-commits
mailing list