[llvm] r258137 - Typo.

Chad Rosier via llvm-commits llvm-commits at lists.llvm.org
Tue Jan 19 08:50:45 PST 2016


Author: mcrosier
Date: Tue Jan 19 10:50:45 2016
New Revision: 258137

URL: http://llvm.org/viewvc/llvm-project?rev=258137&view=rev
Log:
Typo.

Modified:
    llvm/trunk/lib/Target/AArch64/AArch64FrameLowering.cpp

Modified: llvm/trunk/lib/Target/AArch64/AArch64FrameLowering.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/AArch64/AArch64FrameLowering.cpp?rev=258137&r1=258136&r2=258137&view=diff
==============================================================================
--- llvm/trunk/lib/Target/AArch64/AArch64FrameLowering.cpp (original)
+++ llvm/trunk/lib/Target/AArch64/AArch64FrameLowering.cpp Tue Jan 19 10:50:45 2016
@@ -186,7 +186,7 @@ void AArch64FrameLowering::eliminateCall
       // 2) For 12-bit <= offset <= 24-bit, we use two instructions. One uses
       // LSL #0, and the other uses LSL #12.
       //
-      // Mostly call frames will be allocated at the start of a function so
+      // Most call frames will be allocated at the start of a function so
       // this is OK, but it is a limitation that needs dealing with.
       assert(Amount > -0xffffff && Amount < 0xffffff && "call frame too large");
       emitFrameOffset(MBB, I, DL, AArch64::SP, AArch64::SP, Amount, TII);




More information about the llvm-commits mailing list