[Lldb-commits] [lldb] [lldb] Support PtrAuth in the expression evaluator (PR #186001)
Jonas Devlieghere via lldb-commits
lldb-commits at lists.llvm.org
Wed Mar 11 19:33:08 PDT 2026
================
@@ -811,6 +828,12 @@ ClangExpressionParser::ClangExpressionParser(
else
m_compiler->getCodeGenOpts().setDebugInfo(codegenoptions::NoDebugInfo);
+ if (enable_ptrauth) {
+ PointerAuthOptions &ptrauth_opts = m_compiler->getCodeGenOpts().PointerAuth;
----------------
JDevlieghere wrote:
No, since we're passing the `m_compiler->getLangOpts()` that we're setting earlier.
https://github.com/llvm/llvm-project/pull/186001
More information about the lldb-commits
mailing list