[llvm] r283153 - [WebAssemby] Clean up an obsolete comment.
    Dan Gohman via llvm-commits 
    llvm-commits at lists.llvm.org
       
    Mon Oct  3 15:32:21 PDT 2016
    
    
  
Author: djg
Date: Mon Oct  3 17:32:21 2016
New Revision: 283153
URL: http://llvm.org/viewvc/llvm-project?rev=283153&view=rev
Log:
[WebAssemby] Clean up an obsolete comment.
The comment is present inside the body of GetVRegDef.
Modified:
    llvm/trunk/lib/Target/WebAssembly/WebAssemblyRegStackify.cpp
Modified: llvm/trunk/lib/Target/WebAssembly/WebAssemblyRegStackify.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/WebAssembly/WebAssemblyRegStackify.cpp?rev=283153&r1=283152&r2=283153&view=diff
==============================================================================
--- llvm/trunk/lib/Target/WebAssembly/WebAssemblyRegStackify.cpp (original)
+++ llvm/trunk/lib/Target/WebAssembly/WebAssemblyRegStackify.cpp Mon Oct  3 17:32:21 2016
@@ -747,8 +747,7 @@ bool WebAssemblyRegStackify::runOnMachin
         if (TargetRegisterInfo::isPhysicalRegister(Reg))
           continue;
 
-        // Identify the definition for this register at this point. Most
-        // registers are in SSA form here so we try a quick MRI query first.
+        // Identify the definition for this register at this point.
         MachineInstr *Def = GetVRegDef(Reg, Insert, MRI, LIS);
         if (!Def)
           continue;
    
    
More information about the llvm-commits
mailing list