summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-01-20 17:53:51 +0000
committerChris Lattner <sabre@nondot.org>2010-01-20 17:53:51 +0000
commit6a7939243fdb1afc38e01697a76e0bd6af78f4ae (patch)
tree8c6f71e3193e947d993225cb6178fa5ec959f269
parent8a19d3c96c85d3edd6dfcf3c79cfbd1fe62fd127 (diff)
downloadbcm5719-llvm-6a7939243fdb1afc38e01697a76e0bd6af78f4ae.tar.gz
bcm5719-llvm-6a7939243fdb1afc38e01697a76e0bd6af78f4ae.zip
reduce redundant are's.
llvm-svn: 94008
-rw-r--r--llvm/docs/BitCodeFormat.html3
-rw-r--r--llvm/lib/Target/Mips/MipsRegisterInfo.cpp2
-rw-r--r--llvm/lib/Target/XCore/AsmPrinter/XCoreAsmPrinter.cpp2
3 files changed, 3 insertions, 4 deletions
diff --git a/llvm/docs/BitCodeFormat.html b/llvm/docs/BitCodeFormat.html
index 655d7f69b55..f1ddefdea9a 100644
--- a/llvm/docs/BitCodeFormat.html
+++ b/llvm/docs/BitCodeFormat.html
@@ -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>
diff --git a/llvm/lib/Target/Mips/MipsRegisterInfo.cpp b/llvm/lib/Target/Mips/MipsRegisterInfo.cpp
index cae41814eed..80fd9170f1f 100644
--- a/llvm/lib/Target/Mips/MipsRegisterInfo.cpp
+++ b/llvm/lib/Target/Mips/MipsRegisterInfo.cpp
@@ -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 :)
diff --git a/llvm/lib/Target/XCore/AsmPrinter/XCoreAsmPrinter.cpp b/llvm/lib/Target/XCore/AsmPrinter/XCoreAsmPrinter.cpp
index 115d041a70c..9735873bad6 100644
--- a/llvm/lib/Target/XCore/AsmPrinter/XCoreAsmPrinter.cpp
+++ b/llvm/lib/Target/XCore/AsmPrinter/XCoreAsmPrinter.cpp
@@ -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);
OpenPOWER on IntegriCloud