[llvm-branch-commits] [clang] [clang] Define ptrauth_sign_constant builtin. (PR #93904)

Anton Korobeynikov via llvm-branch-commits llvm-branch-commits at lists.llvm.org
Mon Jun 3 12:17:47 PDT 2024


================
@@ -2126,14 +2219,16 @@ static ExprResult PointerAuthSignGenericData(Sema &S, CallExpr *Call) {
 }
 
 static ExprResult PointerAuthSignOrAuth(Sema &S, CallExpr *Call,
-                                        PointerAuthOpKind OpKind) {
+                                        PointerAuthOpKind OpKind,
+                                        bool RequireConstant) {
   if (S.checkArgCount(Call, 3))
     return ExprError();
   if (checkPointerAuthEnabled(S, Call))
     return ExprError();
-  if (checkPointerAuthValue(S, Call->getArgs()[0], OpKind) ||
+  if (checkPointerAuthValue(S, Call->getArgs()[0], OpKind, RequireConstant) ||
----------------
asl wrote:

Can we check code like `Call->getArgs()[N]` to `Call->getArg(N)` while here? Certainly not everywhere, but on changed lines?

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


More information about the llvm-branch-commits mailing list