[clang] [llvm] [HLSL] Implement the `smoothstep` intrinsic (PR #132288)

Kaitlin Peng via llvm-commits llvm-commits at lists.llvm.org
Wed Mar 26 14:52:45 PDT 2025


================
@@ -101,6 +101,52 @@ bool SemaSPIRV::CheckSPIRVBuiltinFunctionCall(unsigned BuiltinID,
     TheCall->setType(RetTy);
     break;
   }
+  case SPIRV::BI__builtin_spirv_smoothstep: {
+    if (SemaRef.checkArgCount(TheCall, 3))
+      return true;
+
+    // check if the all arguments have floating representation
+    ExprResult A = TheCall->getArg(0);
----------------
kmpeng wrote:

Code updated to move the checks into a for loop.

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


More information about the llvm-commits mailing list