[llvm] r177016 - Add two of the float related ARM-specific entries for e_flags needed for
Joerg Sonnenberger
joerg at bec.de
Thu Mar 14 01:01:37 PDT 2013
Author: joerg
Date: Thu Mar 14 03:01:36 2013
New Revision: 177016
URL: http://llvm.org/viewvc/llvm-project?rev=177016&view=rev
Log:
Add two of the float related ARM-specific entries for e_flags needed for
linkers to interact with GNU ld.
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=177016&r1=177015&r2=177016&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Support/ELF.h (original)
+++ llvm/trunk/include/llvm/Support/ELF.h Thu Mar 14 03:01:36 2013
@@ -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,
More information about the llvm-commits
mailing list