[llvm] 9eb08e7 - Remove a reference to rdar://8007500

Jon Roelofs via llvm-commits llvm-commits at lists.llvm.org
Wed Aug 9 11:27:14 PDT 2023


Author: Jon Roelofs
Date: 2023-08-09T11:26:57-07:00
New Revision: 9eb08e7619cc35e771bac8a76df733c7525d9c73

URL: https://github.com/llvm/llvm-project/commit/9eb08e7619cc35e771bac8a76df733c7525d9c73
DIFF: https://github.com/llvm/llvm-project/commit/9eb08e7619cc35e771bac8a76df733c7525d9c73.diff

LOG: Remove a reference to rdar://8007500

The comment already succnictly explains the relevant parts of the radar.

Added: 
    

Modified: 
    llvm/lib/Target/WebAssembly/WebAssemblyRegColoring.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/lib/Target/WebAssembly/WebAssemblyRegColoring.cpp b/llvm/lib/Target/WebAssembly/WebAssemblyRegColoring.cpp
index 4a6d37d7052e50..c9ef17f928144d 100644
--- a/llvm/lib/Target/WebAssembly/WebAssemblyRegColoring.cpp
+++ b/llvm/lib/Target/WebAssembly/WebAssemblyRegColoring.cpp
@@ -226,7 +226,7 @@ bool WebAssemblyRegColoring::runOnMachineFunction(MachineFunction &MF) {
 
   // If there are calls to setjmp or sigsetjmp, don't perform coloring. Virtual
   // registers could be modified before the longjmp is executed, resulting in
-  // the wrong value being used afterwards. (See <rdar://problem/8007500>.)
+  // the wrong value being used afterwards.
   // TODO: Does WebAssembly need to care about setjmp for register coloring?
   if (MF.exposesReturnsTwice())
     return false;


        


More information about the llvm-commits mailing list