summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorSimon Atanasyan <simon@atanasyan.com>2013-10-06 08:49:41 +0000
committerSimon Atanasyan <simon@atanasyan.com>2013-10-06 08:49:41 +0000
commit26ba5df2ebc123b1d214a5e7334c650e90d3738a (patch)
tree8bcc2e11ffa23b6acf70913efb3c5520105ba818 /include
parent79c5e0c5ca85454da568dfafc0bedb84af6c2a68 (diff)
downloadllvm-26ba5df2ebc123b1d214a5e7334c650e90d3738a.tar.gz
llvm-26ba5df2ebc123b1d214a5e7334c650e90d3738a.tar.bz2
llvm-26ba5df2ebc123b1d214a5e7334c650e90d3738a.tar.xz
[Mips] Add MIPS program header types.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@192059 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Support/ELF.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/include/llvm/Support/ELF.h b/include/llvm/Support/ELF.h
index 61d1a0d5cb..8acaa4a5a8 100644
--- a/include/llvm/Support/ELF.h
+++ b/include/llvm/Support/ELF.h
@@ -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.