[llvm-commits] [llvm] r121351 - /llvm/trunk/lib/Target/ARM/ARMFrameInfo.cpp

Eric Christopher echristo at apple.com
Wed Dec 8 17:57:45 PST 2010


Author: echristo
Date: Wed Dec  8 19:57:45 2010
New Revision: 121351

URL: http://llvm.org/viewvc/llvm-project?rev=121351&view=rev
Log:
Fix up some comments.

Modified:
    llvm/trunk/lib/Target/ARM/ARMFrameInfo.cpp

Modified: llvm/trunk/lib/Target/ARM/ARMFrameInfo.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/ARM/ARMFrameInfo.cpp?rev=121351&r1=121350&r2=121351&view=diff
==============================================================================
--- llvm/trunk/lib/Target/ARM/ARMFrameInfo.cpp (original)
+++ llvm/trunk/lib/Target/ARM/ARMFrameInfo.cpp Wed Dec  8 19:57:45 2010
@@ -529,9 +529,9 @@
       if (isKill)
         MBB.addLiveIn(Reg);
 
-      // If NoGap is true, pop consecutive registers and then leave the rest
+      // If NoGap is true, push consecutive registers and then leave the rest
       // for other instructions. e.g.
-      // vpush {d8, d10, d11} -> vpush {d8}, vpop {d10, d11}
+      // vpush {d8, d10, d11} -> vpush {d8}, vpush {d10, d11}
       if (NoGap && LastReg && LastReg != Reg-1)
         break;
       LastReg = Reg;





More information about the llvm-commits mailing list