[clang] [llvm] [clang][ssaf] Implement JSON format for CallGraph summary (PR #189681)
Balázs Benics via llvm-commits
llvm-commits at lists.llvm.org
Tue Mar 31 08:01:02 PDT 2026
================
@@ -150,6 +151,9 @@ void TUSummaryRunner::HandleTranslationUnit(ASTContext &Ctx) {
// First, invoke the Summary Extractors.
MultiplexConsumer::HandleTranslationUnit(Ctx);
+ // FIXME(sandboxing): Remove this by adopting `llvm::vfs::OutputBackend`.
+ llvm::sys::sandbox::ScopedSetting Guard = llvm::sys::sandbox::scopedDisable();
----------------
steakhal wrote:
Without this we would get a crash. This is to workaround this issue while we are in the prototyping phase.
https://github.com/llvm/llvm-project/pull/189681
More information about the llvm-commits
mailing list