From 258d6f7e3ef49fbe1d97eb37b8a07c0730f58fa8 Mon Sep 17 00:00:00 2001 From: George Rimar Date: Thu, 17 Jan 2019 09:14:33 +0000 Subject: [PATCH] [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 --- tools/llvm-objdump/llvm-objdump.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.50.1