diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2011-08-31 16:43:33 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2011-08-31 16:43:33 +0000 |
commit | e81abfd30b7c81735e9f3d79006c2653690aa592 (patch) | |
tree | d9cecdfc9e8b7e8142d3ab307f2d6f4cf1e6c739 /lib/CodeGen/PrologEpilogInserter.cpp | |
parent | ac86d43eae8bbfe5284d8e5fa17c141d1a7b1194 (diff) |
Spelling and grammar fixes to problems found by Duncan.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138858 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/PrologEpilogInserter.cpp')
-rw-r--r-- | lib/CodeGen/PrologEpilogInserter.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/CodeGen/PrologEpilogInserter.cpp b/lib/CodeGen/PrologEpilogInserter.cpp index ec5fe25704..4ad1480427 100644 --- a/lib/CodeGen/PrologEpilogInserter.cpp +++ b/lib/CodeGen/PrologEpilogInserter.cpp @@ -701,10 +701,10 @@ void PEI::insertPrologEpilogCode(MachineFunction &Fn) { TFI.emitEpilogue(Fn, *I); } - // Emit additional code that is required support segmented stacks, if we've - // been asked for it. This, when linked with a runtime with support for - // segmented stacks (libgcc is one), will result allocating stack space in - // small chunks instead of one large contiguous block. + // Emit additional code that is required to support segmented stacks, if + // we've been asked for it. This, when linked with a runtime with support + // for segmented stacks (libgcc is one), will result in allocating stack + // space in small chunks instead of one large contiguous block. if (EnableSegmentedStacks) TFI.adjustForSegmentedStacks(Fn); } |