[PATCH] D61647: llvm-objdump: when ELF st_other field is set, print its value before symbol name

Brandon Bergren via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue May 7 16:41:40 PDT 2019


Bdragon28 added a comment.

So basically, it's either printing nothing (if st_other is 0), .internal (if st_other is 1), .hidden (if st_other is 2), .protected (if st_other is 3), or hex (anything other than these exact st_other values.)

The st_other uint8 is shared between visibility flags and elfv2 local entry point handling.


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D61647/new/

https://reviews.llvm.org/D61647





More information about the llvm-commits mailing list