[llvm-commits] [llvm] r94008 - in /llvm/trunk: docs/BitCodeFormat.html lib/Target/Mips/MipsRegisterInfo.cpp lib/Target/XCore/AsmPrinter/XCoreAsmPrinter.cpp

Chris Lattner sabre at nondot.org
Wed Jan 20 09:53:52 PST 2010


Author: lattner
Date: Wed Jan 20 11:53:51 2010
New Revision: 94008

URL: http://llvm.org/viewvc/llvm-project?rev=94008&view=rev
Log:
reduce redundant are's.

Modified:
    llvm/trunk/docs/BitCodeFormat.html
    llvm/trunk/lib/Target/Mips/MipsRegisterInfo.cpp
    llvm/trunk/lib/Target/XCore/AsmPrinter/XCoreAsmPrinter.cpp

Modified: llvm/trunk/docs/BitCodeFormat.html
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/BitCodeFormat.html?rev=94008&r1=94007&r2=94008&view=diff

==============================================================================
--- llvm/trunk/docs/BitCodeFormat.html (original)
+++ llvm/trunk/docs/BitCodeFormat.html Wed Jan 20 11:53:51 2010
@@ -138,8 +138,7 @@
 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>

Modified: llvm/trunk/lib/Target/Mips/MipsRegisterInfo.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/Mips/MipsRegisterInfo.cpp?rev=94008&r1=94007&r2=94008&view=diff

==============================================================================
--- llvm/trunk/lib/Target/Mips/MipsRegisterInfo.cpp (original)
+++ llvm/trunk/lib/Target/Mips/MipsRegisterInfo.cpp Wed Jan 20 11:53:51 2010
@@ -172,7 +172,7 @@
 //
 // 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 :)

Modified: llvm/trunk/lib/Target/XCore/AsmPrinter/XCoreAsmPrinter.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/XCore/AsmPrinter/XCoreAsmPrinter.cpp?rev=94008&r1=94007&r2=94008&view=diff

==============================================================================
--- llvm/trunk/lib/Target/XCore/AsmPrinter/XCoreAsmPrinter.cpp (original)
+++ llvm/trunk/lib/Target/XCore/AsmPrinter/XCoreAsmPrinter.cpp Wed Jan 20 11:53:51 2010
@@ -178,7 +178,7 @@
       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);
   





More information about the llvm-commits mailing list