[clang] Hlsl or intrinsic (PR #128979)
via cfe-commits
cfe-commits at lists.llvm.org
Wed Feb 26 21:29:07 PST 2025
================
@@ -2305,6 +2305,25 @@ bool SemaHLSL::CheckBuiltinFunctionCall(unsigned BuiltinID, CallExpr *TheCall) {
TheCall->setType(ArgTyA);
break;
}
+ case Builtin::BI__builtin_hlsl_or: {
+ if (SemaRef.checkArgCount(TheCall, 2))
+ return true;
+ if (CheckVectorElementCallArgs(&SemaRef, TheCall))
+ return true;
+
+ // Ensure input expr type is a scalar/vector and the same as the return type
----------------
metkarpoonam wrote:
Yes, good catch! The checks aren't affecting the return type. I'll update the comments to clarify this.
https://github.com/llvm/llvm-project/pull/128979
More information about the cfe-commits
mailing list