diff options
author | George Rimar <grimar@accesssoftek.com> | 2019-01-17 09:14:33 +0000 |
---|---|---|
committer | George Rimar <grimar@accesssoftek.com> | 2019-01-17 09:14:33 +0000 |
commit | ce5cafe595d233f00dcfbc4511e1a15111964278 (patch) | |
tree | 68c6d9de8af5cbe30a3f4d6c2d57bd083c839091 /llvm/tools/llvm-objdump/llvm-objdump.cpp | |
parent | 6ce6bfa4357ec172b5bf90959bead55a9a8c825c (diff) | |
download | llvm-ce5cafe595d233f00dcfbc4511e1a15111964278.zip llvm-ce5cafe595d233f00dcfbc4511e1a15111964278.tar.gz llvm-ce5cafe595d233f00dcfbc4511e1a15111964278.tar.bz2 |
[llvm-objdump] - Fix comment. NFC.
Forgot to address this one.
llvm-svn: 351418
Diffstat (limited to 'llvm/tools/llvm-objdump/llvm-objdump.cpp')
-rw-r--r-- | llvm/tools/llvm-objdump/llvm-objdump.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/llvm-objdump/llvm-objdump.cpp b/llvm/tools/llvm-objdump/llvm-objdump.cpp index e0ec072..449d10c 100644 --- a/llvm/tools/llvm-objdump/llvm-objdump.cpp +++ b/llvm/tools/llvm-objdump/llvm-objdump.cpp @@ -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); |