[llvm] f9ebcb4 - Remove a reference to rdar://problem/8030636
Jon Roelofs via llvm-commits
llvm-commits at lists.llvm.org
Wed Aug 9 17:27:29 PDT 2023
Author: Jon Roelofs
Date: 2023-08-09T17:27:09-07:00
New Revision: f9ebcb4814d0c7b23d0c503069bd058a09edea96
URL: https://github.com/llvm/llvm-project/commit/f9ebcb4814d0c7b23d0c503069bd058a09edea96
DIFF: https://github.com/llvm/llvm-project/commit/f9ebcb4814d0c7b23d0c503069bd058a09edea96.diff
LOG: Remove a reference to rdar://problem/8030636
The surrounding comment has more than enough context to describe the problem.
Added:
Modified:
llvm/lib/CodeGen/MachineSink.cpp
Removed:
################################################################################
diff --git a/llvm/lib/CodeGen/MachineSink.cpp b/llvm/lib/CodeGen/MachineSink.cpp
index 57ae7b5660bbc7..8fda4c3e3e83f8 100644
--- a/llvm/lib/CodeGen/MachineSink.cpp
+++ b/llvm/lib/CodeGen/MachineSink.cpp
@@ -1385,7 +1385,7 @@ bool MachineSinking::SinkInstruction(MachineInstr &MI, bool &SawStore,
// If the instruction to move defines a dead physical register which is live
// when leaving the basic block, don't move it because it could turn into a
- // "zombie" define of that preg. E.g., EFLAGS. (<rdar://problem/8030636>)
+ // "zombie" define of that preg. E.g., EFLAGS.
for (const MachineOperand &MO : MI.all_defs()) {
Register Reg = MO.getReg();
if (Reg == 0 || !Reg.isPhysical())
More information about the llvm-commits
mailing list