fix 'the the '; NFC
authorSanjay Patel <spatel@rotateright.com>
Mon, 7 Dec 2015 19:21:39 +0000 (19:21 +0000)
committerSanjay Patel <spatel@rotateright.com>
Mon, 7 Dec 2015 19:21:39 +0000 (19:21 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@254928 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Analysis/ValueTracking.h
lib/Analysis/LoopAccessAnalysis.cpp
lib/Target/Hexagon/AsmParser/HexagonAsmParser.cpp
lib/Target/Hexagon/HexagonInstrInfo.cpp
tools/dsymutil/DwarfLinker.cpp
tools/llc/llc.cpp

index eb2c000e07cd51d972a66dd6af07027e53151e1a..8e0291068472d514c0cf7a8a02e7e6d5cd36a2c9 100644 (file)
@@ -286,7 +286,7 @@ namespace llvm {
 
   /// Returns true if the result or effects of the given instructions \p I
   /// depend on or influence global memory.
-  /// Memory dependence arises for example if the the instruction reads from
+  /// Memory dependence arises for example if the instruction reads from
   /// memory or may produce effects or undefined behaviour. Memory dependent
   /// instructions generally cannot be reorderd with respect to other memory
   /// dependent instructions or moved into non-dominated basic blocks.
index 49b28078c9767c0dce6484d7253b7551c0fcb589..b2670bf48dd84fb9d7dfa468a0e0893bdb5e9494 100644 (file)
@@ -289,7 +289,7 @@ void RuntimePointerChecking::groupChecks(
   // don't process them twice.
   SmallSet<unsigned, 2> Seen;
 
-  // Go through all equivalence classes, get the the "pointer check groups"
+  // Go through all equivalence classes, get the "pointer check groups"
   // and add them to the overall solution. We use the order in which accesses
   // appear in 'Pointers' to enforce determinism.
   for (unsigned I = 0; I < Pointers.size(); ++I) {
index 64050824c10bd6066f2aa97ffb75372bfb589e98..a8622a96527caec71f65d1292236a1ff02bf6fb1 100644 (file)
@@ -1592,7 +1592,7 @@ int HexagonAsmParser::processInstruction(MCInst &Inst,
     //   not use the other opcode as it is a legacy artifact of TD files.
     int64_t Value;
     if (MO.getExpr()->evaluateAsAbsolute(Value)) {
-      // if the the operand can fit within a 7:2 field
+      // if the operand can fit within a 7:2 field
       if (Value < (1 << 8) && Value >= -(1 << 8)) {
         SMLoc myLoc = Operands[2]->getStartLoc();
         // # is left in startLoc in the case of ##
index 3dc49337ecb5ea06c2230cbfee5f63c8cb776178..2862468563c2ae51c7a09265fe79164154ea6be4 100644 (file)
@@ -1475,7 +1475,7 @@ bool HexagonInstrInfo::isComplex(const MachineInstr *MI) const {
 }
 
 
-// Return true if the the instruction is a compund branch instruction.
+// Return true if the instruction is a compund branch instruction.
 bool HexagonInstrInfo::isCompoundBranchInstr(const MachineInstr *MI) const {
   return (getType(MI) == HexagonII::TypeCOMPOUND && MI->isBranch());
 }
index 7ac6f8ed5e3d6247f40d93dd75057b246b14b825..e8877a5da8949d2f3224bbf25ffeb5dea783f459 100644 (file)
@@ -2826,7 +2826,7 @@ void DwarfLinker::patchRangesForUnit(const CompileUnit &Unit,
   uint64_t OrigLowPc = OrigUnitDie->getAttributeValueAsAddress(
       &OrigUnit, dwarf::DW_AT_low_pc, -1ULL);
   // Ranges addresses are based on the unit's low_pc. Compute the
-  // offset we need to apply to adapt to the the new unit's low_pc.
+  // offset we need to apply to adapt to the new unit's low_pc.
   int64_t UnitPcOffset = 0;
   if (OrigLowPc != -1ULL)
     UnitPcOffset = int64_t(OrigLowPc) - Unit.getLowPc();
index 531aba1f64bf9e071dcf0b2e750ad19966a5762a..bffa39fd9e5c5ba53b157e09c82425f61f5d2b85 100644 (file)
@@ -100,7 +100,7 @@ static cl::opt<bool> AsmVerbose("asm-verbose",
 static cl::opt<bool>
     CompileTwice("compile-twice", cl::Hidden,
                  cl::desc("Run everything twice, re-using the same pass "
-                          "manager and verify the the result is the same."),
+                          "manager and verify the result is the same."),
                  cl::init(false));
 
 static int compileModule(char **, LLVMContext &);