summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorJoerg Sonnenberger <joerg@bec.de>2013-03-14 08:01:36 +0000
committerJoerg Sonnenberger <joerg@bec.de>2013-03-14 08:01:36 +0000
commit4bf030402de033aa0f0eb10165a169b9042c65da (patch)
tree98b28cfe3ccbf17f556a32a375b48069127ed19b /include
parentfdf168fbc415a4d2e3cfec36f328979f11a3186f (diff)
downloadllvm-4bf030402de033aa0f0eb10165a169b9042c65da.tar.gz
llvm-4bf030402de033aa0f0eb10165a169b9042c65da.tar.bz2
llvm-4bf030402de033aa0f0eb10165a169b9042c65da.tar.xz
Add two of the float related ARM-specific entries for e_flags needed for
linkers to interact with GNU ld. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@177016 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Support/ELF.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/llvm/Support/ELF.h b/include/llvm/Support/ELF.h
index 8e6b91e00e..cc9151ef50 100644
--- a/include/llvm/Support/ELF.h
+++ b/include/llvm/Support/ELF.h
@@ -588,6 +588,8 @@ enum {
// ARM Specific e_flags
enum {
+ EF_ARM_SOFT_FLOAT = 0x00000200U,
+ EF_ARM_VFP_FLOAT = 0x00000400U,
EF_ARM_EABI_UNKNOWN = 0x00000000U,
EF_ARM_EABI_VER1 = 0x01000000U,
EF_ARM_EABI_VER2 = 0x02000000U,