================ @@ -2220,6 +2220,11 @@ llvm::Constant *ConstantLValueEmitter::emitPointerAuthPointer(const Expr *E) { // The assertions here are all checked by Sema. assert(Result.Val.isLValue()); + auto *Base = Result.Val.getLValueBase().get<const ValueDecl *>(); + if (auto *Decl = dyn_cast_or_null<FunctionDecl>(Base)) { + assert(Result.Val.getLValueOffset().isZero()); + return CGM.getRawFunctionPointer(Decl); ---------------- ahatanak wrote:
Just noticed that there's an unnecessary null check in the code above. https://github.com/llvm/llvm-project/pull/96992 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits