[PATCH] D144794: [DebugInfo][NFC] Remove `FuncArgumentDbgValueKind::Addr` from SelectionDAG r=Orlando,StephenTozer,probinson,rnk
J. Ryan Stinnett via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Sat Feb 25 16:13:24 PST 2023
jryans created this revision.
jryans added reviewers: Orlando, StephenTozer, probinson, rnk.
Herald added a subscriber: hiraditya.
Herald added a project: All.
jryans requested review of this revision.
Herald added a project: LLVM.
Herald added a subscriber: llvm-commits.
This removes the unused `FuncArgumentDbgValueKind::Addr` value originally added
by e24f5348798605a799c63ff09169d177d262cd37 <https://reviews.llvm.org/rGe24f5348798605a799c63ff09169d177d262cd37>. The intent was to signal the
original intrinsic that marked a function argument, but the `Addr` part was
never used.
Part of `dbg.addr` removal
Discussed in https://discourse.llvm.org/t/what-is-the-status-of-dbg-addr/62898
Depends on D144793 <https://reviews.llvm.org/D144793>
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D144794
Files:
llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h
Index: llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h
===================================================================
--- llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h
+++ llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h
@@ -670,7 +670,6 @@
/// EmitFuncArgumentDbgValue.
enum class FuncArgumentDbgValueKind {
Value, // This was originally a llvm.dbg.value.
- Addr, // This was originally a llvm.dbg.addr.
Declare, // This was originally a llvm.dbg.declare.
};
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D144794.500461.patch
Type: text/x-patch
Size: 507 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20230226/5b26cd9f/attachment.bin>
More information about the llvm-commits
mailing list