1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 03:02:36 +01:00

reduce redundant are's.

llvm-svn: 94008
This commit is contained in:
Chris Lattner 2010-01-20 17:53:51 +00:00
parent ac14f3bf31
commit 2e8baf1561
3 changed files with 3 additions and 4 deletions

View File

@ -138,8 +138,7 @@ bitcode, while application-specific programs will want to look at all four.</p>
A bitstream literally consists of a stream of bits, which are read in order
starting with the least significant bit of each byte. The stream is made up of a
number of primitive values that encode a stream of unsigned integer values.
These
integers are are encoded in two ways: either as <a href="#fixedwidth">Fixed
These integers are encoded in two ways: either as <a href="#fixedwidth">Fixed
Width Integers</a> or as <a href="#variablewidth">Variable Width
Integers</a>.
</p>

View File

@ -172,7 +172,7 @@ getReservedRegs(const MachineFunction &MF) const
//
// The stack is allocated decrementing the stack pointer on
// the first instruction of a function prologue. Once decremented,
// all stack referencesare are done thought a positive offset
// all stack references are done thought a positive offset
// from the stack/frame pointer, so the stack is considering
// to grow up! Otherwise terrible hacks would have to be made
// to get this stack ABI compliant :)

View File

@ -178,7 +178,7 @@ void XCoreAsmPrinter::EmitGlobalVariable(const GlobalVariable *GV) {
EmitGlobalConstant(C);
}
// The ABI requires that unsigned scalar types smaller than 32 bits
// are are padded to 32 bits.
// are padded to 32 bits.
if (Size < 4)
OutStreamer.EmitZeros(4 - Size, 0);