summaryrefslogtreecommitdiff
path: root/include/llvm/Support/ELF.h
diff options
context:
space:
mode:
authorJason W Kim <jason.w.kim.2009@gmail.com>2011-02-04 21:41:11 +0000
committerJason W Kim <jason.w.kim.2009@gmail.com>2011-02-04 21:41:11 +0000
commit2d7a53aec2c6426eba9e5dd6462cc9e86432b410 (patch)
tree1385db05b9cae29cf96a5e89971deadefc9b6ac5 /include/llvm/Support/ELF.h
parent685c350ae76b588e1f00c01a511fe8bd57f18394 (diff)
downloadllvm-2d7a53aec2c6426eba9e5dd6462cc9e86432b410.tar.gz
llvm-2d7a53aec2c6426eba9e5dd6462cc9e86432b410.tar.bz2
llvm-2d7a53aec2c6426eba9e5dd6462cc9e86432b410.tar.xz
Teach ARM/MC/ELF about EF_ARM_EABI_VERSION. The magic number is set to
5 to match the current doc. Added FIXME reminder Make it really configurable later. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@124899 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support/ELF.h')
-rw-r--r--include/llvm/Support/ELF.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/llvm/Support/ELF.h b/include/llvm/Support/ELF.h
index 58c216bdfe..cc72bd59cb 100644
--- a/include/llvm/Support/ELF.h
+++ b/include/llvm/Support/ELF.h
@@ -290,6 +290,10 @@ enum {
R_MICROBLAZE_COPY = 21
};
+
+// ARM Specific e_flags
+enum { EF_ARM_EABIMASK = 0xFF000000U };
+
// ELF Relocation types for ARM
// Meets 2.08 ABI Specs.