[Mips] Add MIPS program header types.

llvm-svn: 192059
This commit is contained in:
Simon Atanasyan 2013-10-06 08:49:41 +00:00
parent 82f4901d5f
commit 567f085177
1 changed files with 6 additions and 1 deletions

View File

@ -1447,7 +1447,12 @@ enum {
PT_ARM_ARCHEXT = 0x70000000, // Platform architecture compatibility info
// These all contain stack unwind tables.
PT_ARM_EXIDX = 0x70000001,
PT_ARM_UNWIND = 0x70000001
PT_ARM_UNWIND = 0x70000001,
// MIPS program header types.
PT_MIPS_REGINFO = 0x70000000, // Register usage information.
PT_MIPS_RTPROC = 0x70000001, // Runtime procedure table.
PT_MIPS_OPTIONS = 0x70000002 // Options segment.
};
// Segment flag bits.