OSDN Git Service

[llvm-objdump] - Fix comment. NFC.
authorGeorge Rimar <grimar@accesssoftek.com>
Thu, 17 Jan 2019 09:14:33 +0000 (09:14 +0000)
committerGeorge Rimar <grimar@accesssoftek.com>
Thu, 17 Jan 2019 09:14:33 +0000 (09:14 +0000)
Forgot to address this one.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@351418 91177308-0d34-0410-b5e6-96231b3b80d8

tools/llvm-objdump/llvm-objdump.cpp

index e0ec072..449d10c 100644 (file)
@@ -498,7 +498,7 @@ static std::error_code getRelocationValueString(const ELFObjectFile<ELFT> *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);