[llvm] r192059 - [Mips] Add MIPS program header types.
Simon Atanasyan
simon at atanasyan.com
Sun Oct 6 01:49:42 PDT 2013
Author: atanasyan
Date: Sun Oct 6 03:49:41 2013
New Revision: 192059
URL: http://llvm.org/viewvc/llvm-project?rev=192059&view=rev
Log:
[Mips] Add MIPS program header types.
Modified:
llvm/trunk/include/llvm/Support/ELF.h
Modified: llvm/trunk/include/llvm/Support/ELF.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Support/ELF.h?rev=192059&r1=192058&r2=192059&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Support/ELF.h (original)
+++ llvm/trunk/include/llvm/Support/ELF.h Sun Oct 6 03:49:41 2013
@@ -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.
More information about the llvm-commits
mailing list