From: George Rimar Date: Thu, 17 Jan 2019 09:14:33 +0000 (+0000) Subject: [llvm-objdump] - Fix comment. NFC. X-Git-Tag: android-x86-9.0-r1~8358 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=258d6f7e3ef49fbe1d97eb37b8a07c0730f58fa8;p=android-x86%2Fexternal-llvm.git [llvm-objdump] - Fix comment. NFC. Forgot to address this one. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@351418 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/llvm-objdump/llvm-objdump.cpp b/tools/llvm-objdump/llvm-objdump.cpp index e0ec072ab73..449d10cbb92 100644 --- a/tools/llvm-objdump/llvm-objdump.cpp +++ b/tools/llvm-objdump/llvm-objdump.cpp @@ -498,7 +498,7 @@ static std::error_code getRelocationValueString(const ELFObjectFile *Obj, // requires the relocation to be associated with a symbol. // // In SHT_REL case we would need to read the addend from section data. - // GNU objdump does not do that and we just follow for simplicity atm. + // GNU objdump does not do that and we just follow for simplicity. bool Undef = false; if ((*SecOrErr)->sh_type == ELF::SHT_RELA) { const Elf_Rela *ERela = Obj->getRela(Rel);