diff options
author | Haowei <haowei@google.com> | 2025-07-23 15:45:43 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-07-23 15:45:43 -0700 |
commit | 05e08cdb3e576cc0887d1507ebd2f756460c7db7 (patch) | |
tree | 8000d19ffbb51f0b730d3e0160293bbdd7357c27 /llvm/lib/CodeGen/CommandFlags.cpp | |
parent | 11d97b3b58687bf4db978d3ba3c15fd6177549fa (diff) | |
download | llvm-05e08cdb3e576cc0887d1507ebd2f756460c7db7.zip llvm-05e08cdb3e576cc0887d1507ebd2f756460c7db7.tar.gz llvm-05e08cdb3e576cc0887d1507ebd2f756460c7db7.tar.bz2 |
Revert "[llvm] Add CalleeTypeIds field to CallSiteInfo" (#150335)
Reverts llvm/llvm-project#87574, which breaks LLVM ::
CodeGen/MIR/X86/call-site-info-ambiguous-indirect-call-typeid.mir tests
on linux-arm64 builders.
Diffstat (limited to 'llvm/lib/CodeGen/CommandFlags.cpp')
-rw-r--r-- | llvm/lib/CodeGen/CommandFlags.cpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/llvm/lib/CodeGen/CommandFlags.cpp b/llvm/lib/CodeGen/CommandFlags.cpp index 810dc29..9512f79 100644 --- a/llvm/lib/CodeGen/CommandFlags.cpp +++ b/llvm/lib/CodeGen/CommandFlags.cpp @@ -101,7 +101,6 @@ CGOPT(EABI, EABIVersion) CGOPT(DebuggerKind, DebuggerTuningOpt) CGOPT(bool, EnableStackSizeSection) CGOPT(bool, EnableAddrsig) -CGOPT(bool, EnableCallGraphSection) CGOPT(bool, EmitCallSiteInfo) CGOPT(bool, EnableMachineFunctionSplitter) CGOPT(bool, EnableStaticDataPartitioning) @@ -462,11 +461,6 @@ codegen::RegisterCodeGenFlags::RegisterCodeGenFlags() { cl::init(false)); CGBINDOPT(EnableAddrsig); - static cl::opt<bool> EnableCallGraphSection( - "call-graph-section", cl::desc("Emit a call graph section"), - cl::init(false)); - CGBINDOPT(EnableCallGraphSection); - static cl::opt<bool> EmitCallSiteInfo( "emit-call-site-info", cl::desc( @@ -601,7 +595,6 @@ codegen::InitTargetOptionsFromCodeGenFlags(const Triple &TheTriple) { Options.EnableMachineFunctionSplitter = getEnableMachineFunctionSplitter(); Options.EnableStaticDataPartitioning = getEnableStaticDataPartitioning(); Options.EmitAddrsig = getEnableAddrsig(); - Options.EmitCallGraphSection = getEnableCallGraphSection(); Options.EmitCallSiteInfo = getEmitCallSiteInfo(); Options.EnableDebugEntryValues = getEnableDebugEntryValues(); Options.ForceDwarfFrameSection = getForceDwarfFrameSection(); |