[llvm] r351418 - [llvm-objdump] - Fix comment. NFC.

George Rimar via llvm-commits llvm-commits at lists.llvm.org
Thu Jan 17 01:14:33 PST 2019


Author: grimar
Date: Thu Jan 17 01:14:33 2019
New Revision: 351418

URL: http://llvm.org/viewvc/llvm-project?rev=351418&view=rev
Log:
[llvm-objdump] - Fix comment. NFC.

Forgot to address this one.

Modified:
    llvm/trunk/tools/llvm-objdump/llvm-objdump.cpp

Modified: llvm/trunk/tools/llvm-objdump/llvm-objdump.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/llvm-objdump/llvm-objdump.cpp?rev=351418&r1=351417&r2=351418&view=diff
==============================================================================
--- llvm/trunk/tools/llvm-objdump/llvm-objdump.cpp (original)
+++ llvm/trunk/tools/llvm-objdump/llvm-objdump.cpp Thu Jan 17 01:14:33 2019
@@ -498,7 +498,7 @@ static std::error_code getRelocationValu
   // 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);




More information about the llvm-commits mailing list