reduce redundant are's.
authorChris Lattner <sabre@nondot.org>
Wed, 20 Jan 2010 17:53:51 +0000 (17:53 +0000)
committerChris Lattner <sabre@nondot.org>
Wed, 20 Jan 2010 17:53:51 +0000 (17:53 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94008 91177308-0d34-0410-b5e6-96231b3b80d8

docs/BitCodeFormat.html
lib/Target/Mips/MipsRegisterInfo.cpp
lib/Target/XCore/AsmPrinter/XCoreAsmPrinter.cpp

index 655d7f69b558a97ca6fd8ef7324b621804cceddd..f1ddefdea9afefe7664c6a7433234a1364dde6e8 100644 (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>
index cae41814eed5750e4253de097db044c4b7f963f5..80fd9170f1f71f2f19c6c45c894b886374868531 100644 (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 :)
index 115d041a70c1d20f80c0c7e537e2d143e563a991..9735873bad67ad0b3d840c49c1f4ffcba3228333 100644 (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);