[llvm] r258025 - [Support/ELF] Add Sun machine-independent extesions DT_* constants.

Davide Italiano via llvm-commits llvm-commits at lists.llvm.org
Sun Jan 17 14:46:51 PST 2016


Author: davide
Date: Sun Jan 17 16:46:50 2016
New Revision: 258025

URL: http://llvm.org/viewvc/llvm-project?rev=258025&view=rev
Log:
[Support/ELF] Add Sun machine-independent extesions DT_* constants.

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=258025&r1=258024&r2=258025&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Support/ELF.h (original)
+++ llvm/trunk/include/llvm/Support/ELF.h Sun Jan 17 16:46:50 2016
@@ -1201,8 +1201,12 @@ enum {
   DT_MIPS_PLTGOT            = 0x70000032, // Address of the base of the PLTGOT.
   DT_MIPS_RWPLT             = 0x70000034, // Points to the base
                                           // of a writable PLT.
-  DT_MIPS_RLD_MAP_REL       = 0x70000035  // Relative offset of run time loader
-                                          // map, used for debugging.
+  DT_MIPS_RLD_MAP_REL       = 0x70000035, // Relative offset of run time loader
+
+  // Sun machine-independent extensions.
+  DT_AUXILIARY              = 0x7FFFFFFD, // Shared object to load before self
+  DT_FILTER                 = 0x7FFFFFFF, // Shared object to get values from
+  DT_EXTRANUM               = 3
 };
 
 // DT_FLAGS values.




More information about the llvm-commits mailing list