[llvm-commits] [llvm] r112297 - in /llvm/trunk/include/llvm: CodeGen/MachineFrameInfo.h Target/TargetCallingConv.td
Eric Christopher
echristo at apple.com
Fri Aug 27 14:38:11 PDT 2010
Author: echristo
Date: Fri Aug 27 16:38:11 2010
New Revision: 112297
URL: http://llvm.org/viewvc/llvm-project?rev=112297&view=rev
Log:
Fix a couple of typos.
Patch by Cameron Esfahani!
Modified:
llvm/trunk/include/llvm/CodeGen/MachineFrameInfo.h
llvm/trunk/include/llvm/Target/TargetCallingConv.td
Modified: llvm/trunk/include/llvm/CodeGen/MachineFrameInfo.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/CodeGen/MachineFrameInfo.h?rev=112297&r1=112296&r2=112297&view=diff
==============================================================================
--- llvm/trunk/include/llvm/CodeGen/MachineFrameInfo.h (original)
+++ llvm/trunk/include/llvm/CodeGen/MachineFrameInfo.h Fri Aug 27 16:38:11 2010
@@ -31,7 +31,7 @@
class BitVector;
/// The CalleeSavedInfo class tracks the information need to locate where a
-/// callee saved register in the current frame.
+/// callee saved register is in the current frame.
class CalleeSavedInfo {
unsigned Reg;
int FrameIdx;
Modified: llvm/trunk/include/llvm/Target/TargetCallingConv.td
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Target/TargetCallingConv.td?rev=112297&r1=112296&r2=112297&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Target/TargetCallingConv.td (original)
+++ llvm/trunk/include/llvm/Target/TargetCallingConv.td Fri Aug 27 16:38:11 2010
@@ -42,7 +42,7 @@
class CCIfByVal<CCAction A> : CCIf<"ArgFlags.isByVal()", A> {
}
-/// CCIfCC - Match of the current calling convention is 'CC'.
+/// CCIfCC - Match if the current calling convention is 'CC'.
class CCIfCC<string CC, CCAction A>
: CCIf<!strconcat("State.getCallingConv() == ", CC), A> {}
More information about the llvm-commits
mailing list