Skip to content

Commit c907681

Browse files
committed
[NFC] Fix typos in CallingConvLower.h
1 parent f2e85c3 commit c907681

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

llvm/include/llvm/CodeGen/CallingConvLower.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ class CCValAssign {
5454
};
5555

5656
private:
57-
/// ValNo - This is the value number begin assigned (e.g. an argument number).
57+
/// ValNo - This is the value number being assigned (e.g. an argument number).
5858
unsigned ValNo;
5959

6060
/// Loc is either a stack offset or a register number.
@@ -228,7 +228,7 @@ class CCState {
228228
//
229229
// Supposed use-case for this collection:
230230
// 1. Initially ByValRegs is empty, InRegsParamsProcessed is 0.
231-
// 2. HandleByVal fillups ByValRegs.
231+
// 2. HandleByVal fills up ByValRegs.
232232
// 3. Argument analysis (LowerFormatArguments, for example). After
233233
// some byval argument was analyzed, InRegsParamsProcessed is increased.
234234
struct ByValInfo {
@@ -469,7 +469,7 @@ class CCState {
469469
// in registers.
470470
unsigned getInRegsParamsCount() const { return ByValRegs.size(); }
471471

472-
// Returns count of byval in-regs arguments proceed.
472+
// Returns count of byval in-regs arguments processed.
473473
unsigned getInRegsParamsProcessed() const { return InRegsParamsProcessed; }
474474

475475
// Get information about N-th byval parameter that is stored in registers.

0 commit comments

Comments
 (0)