From f958dd2e1c12b70f6eef5a2aef4a6ac497a1b471 Mon Sep 17 00:00:00 2001
From: Chris Lattner
Date: Wed, 20 Jan 2010 17:53:51 +0000
Subject: [PATCH] reduce redundant are's.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94008 91177308-0d34-0410-b5e6-96231b3b80d8
---
docs/BitCodeFormat.html | 3 +--
lib/Target/Mips/MipsRegisterInfo.cpp | 2 +-
lib/Target/XCore/AsmPrinter/XCoreAsmPrinter.cpp | 2 +-
3 files changed, 3 insertions(+), 4 deletions(-)
diff --git a/docs/BitCodeFormat.html b/docs/BitCodeFormat.html
index 655d7f69b55..f1ddefdea9a 100644
--- a/docs/BitCodeFormat.html
+++ b/docs/BitCodeFormat.html
@@ -138,8 +138,7 @@ bitcode, while application-specific programs will want to look at all four.
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 Fixed
+These integers are encoded in two ways: either as Fixed
Width Integers or as Variable Width
Integers.
diff --git a/lib/Target/Mips/MipsRegisterInfo.cpp b/lib/Target/Mips/MipsRegisterInfo.cpp
index cae41814eed..80fd9170f1f 100644
--- a/lib/Target/Mips/MipsRegisterInfo.cpp
+++ b/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/lib/Target/XCore/AsmPrinter/XCoreAsmPrinter.cpp b/lib/Target/XCore/AsmPrinter/XCoreAsmPrinter.cpp
index 115d041a70c..9735873bad6 100644
--- a/lib/Target/XCore/AsmPrinter/XCoreAsmPrinter.cpp
+++ b/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);