mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-07 12:28:24 +00:00
[objdump] Print the PT_INTERP and PT_DYNAMIC correcctly.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@175659 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -39,6 +39,12 @@ void printProgramHeaders(
|
|||||||
case ELF::PT_GNU_EH_FRAME:
|
case ELF::PT_GNU_EH_FRAME:
|
||||||
outs() << "EH_FRAME ";
|
outs() << "EH_FRAME ";
|
||||||
break;
|
break;
|
||||||
|
case ELF::PT_INTERP:
|
||||||
|
outs() << " INTERP ";
|
||||||
|
break;
|
||||||
|
case ELF::PT_DYNAMIC:
|
||||||
|
outs() << " DYNAMIC ";
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
outs() << " UNKNOWN ";
|
outs() << " UNKNOWN ";
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user