Fix a couple of typos.
authorEric Christopher <echristo@apple.com>
Fri, 27 Aug 2010 21:38:11 +0000 (21:38 +0000)
committerEric Christopher <echristo@apple.com>
Fri, 27 Aug 2010 21:38:11 +0000 (21:38 +0000)
Patch by Cameron Esfahani!

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@112297 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/CodeGen/MachineFrameInfo.h
include/llvm/Target/TargetCallingConv.td

index 44b3aed8453b395d3177e6b3ec00d95123bd951d..b6297fab3a98350464c14b72c1b2384988842e57 100644 (file)
@@ -31,7 +31,7 @@ class TargetFrameInfo;
 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;
index 35b648216a3060e570fd76d2565a85cbe631f73e..6da3ba13bb35522bda6c1cc60f4472051e8245f8 100644 (file)
@@ -42,7 +42,7 @@ class CCIf<string predicate, CCAction A> : CCPredicateAction<A> {
 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> {}