[clang] [llvm] [HLSL] Implementation of the frac intrinsic (PR #83315)
S. Bharadwaj Yadavalli via cfe-commits
cfe-commits at lists.llvm.org
Thu Feb 29 09:31:51 PST 2024
================
@@ -5246,6 +5246,23 @@ bool CheckVectorElementCallArgs(Sema *S, CallExpr *TheCall) {
return true;
}
+bool CheckAllArgsAreFloatRepresentation(Sema *S, CallExpr *TheCall) {
----------------
bharadwajy wrote:
Consider changing the function name to either
`CheckAllArgsAreFloatType`, `CheckAllArgsAreFloats` or `CheckAllArgsHaveFloatRepresentation`
https://github.com/llvm/llvm-project/pull/83315
More information about the cfe-commits
mailing list