diff options
author | Sanjay Patel <spatel@rotateright.com> | 2015-12-07 19:21:39 +0000 |
---|---|---|
committer | Sanjay Patel <spatel@rotateright.com> | 2015-12-07 19:21:39 +0000 |
commit | e4b9f507cf7cc65454161cd39ec35bc63f126cf6 (patch) | |
tree | ccfc434a5c55ac7f2fb3105af02260c17d865003 /llvm/tools | |
parent | aff223278c3770ba11c98bc33b53e0ea6ff675ae (diff) | |
download | bcm5719-llvm-e4b9f507cf7cc65454161cd39ec35bc63f126cf6.tar.gz bcm5719-llvm-e4b9f507cf7cc65454161cd39ec35bc63f126cf6.zip |
fix 'the the '; NFC
llvm-svn: 254928
Diffstat (limited to 'llvm/tools')
-rw-r--r-- | llvm/tools/dsymutil/DwarfLinker.cpp | 2 | ||||
-rw-r--r-- | llvm/tools/llc/llc.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/llvm/tools/dsymutil/DwarfLinker.cpp b/llvm/tools/dsymutil/DwarfLinker.cpp index 7ac6f8ed5e3..e8877a5da89 100644 --- a/llvm/tools/dsymutil/DwarfLinker.cpp +++ b/llvm/tools/dsymutil/DwarfLinker.cpp @@ -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(); diff --git a/llvm/tools/llc/llc.cpp b/llvm/tools/llc/llc.cpp index 531aba1f64b..bffa39fd9e5 100644 --- a/llvm/tools/llc/llc.cpp +++ b/llvm/tools/llc/llc.cpp @@ -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 &); |