[llvm] [CodeGen] Add -force-emit-call-site-info LLVM flag (PR #206668)

Matt Arsenault via llvm-commits llvm-commits at lists.llvm.org
Tue Jun 30 00:51:53 PDT 2026


================
@@ -65,3 +71,7 @@ bool TargetOptions::ShouldEmitDebugEntryValues() const {
   return (SupportsDebugEntryValues && DebuggerTuning != DebuggerKind::SCE) ||
          EnableDebugEntryValues;
 }
+
+bool TargetOptions::ShouldEmitCallSiteInfo() const {
+  return EmitCallSiteInfo || ForceEmitCallSiteInfo;
----------------
arsenm wrote:

Don't see why this needs a new field instead of just writing the existing one 

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


More information about the llvm-commits mailing list