[llvm] 8475d0a - fixup! Remove a reference to rdar://8007500

Jon Roelofs via llvm-commits llvm-commits at lists.llvm.org
Wed Aug 9 15:04:09 PDT 2023


Author: Jon Roelofs
Date: 2023-08-09T15:03:41-07:00
New Revision: 8475d0a2b853f6184948b428ec679edf84ed2688

URL: https://github.com/llvm/llvm-project/commit/8475d0a2b853f6184948b428ec679edf84ed2688
DIFF: https://github.com/llvm/llvm-project/commit/8475d0a2b853f6184948b428ec679edf84ed2688.diff

LOG: fixup! Remove a reference to rdar://8007500

Remove another reference to the same radar.

Added: 
    

Modified: 
    llvm/lib/CodeGen/StackSlotColoring.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/lib/CodeGen/StackSlotColoring.cpp b/llvm/lib/CodeGen/StackSlotColoring.cpp
index 6d933ab12041d7..16a1203262e5a3 100644
--- a/llvm/lib/CodeGen/StackSlotColoring.cpp
+++ b/llvm/lib/CodeGen/StackSlotColoring.cpp
@@ -523,8 +523,7 @@ bool StackSlotColoring::runOnMachineFunction(MachineFunction &MF) {
 
   // If there are calls to setjmp or sigsetjmp, don't perform stack slot
   // coloring. The stack could be modified before the longjmp is executed,
-  // resulting in the wrong value being used afterwards. (See
-  // <rdar://problem/8007500>.)
+  // resulting in the wrong value being used afterwards.
   if (MF.exposesReturnsTwice())
     return false;
 


        


More information about the llvm-commits mailing list