Skip to content

Commit

Permalink
[objdump] Add PT_PHDR.
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@175709 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
Bigcheese committed Feb 21, 2013
1 parent 7721722 commit 5618230
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tools/llvm-objdump/ELFDump.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@ void printProgramHeaders(
case ELF::PT_DYNAMIC:
outs() << " DYNAMIC ";
break;
case ELF::PT_PHDR:
outs() << " PHDR ";
break;
default:
outs() << " UNKNOWN ";
}
Expand Down

0 comments on commit 5618230

Please sign in to comment.