From: Michael J. Spencer Date: Sat, 16 Feb 2013 01:56:36 +0000 (+0000) Subject: [ELF] Add STN_UNDEF. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=6d3a278aabb0007e75a6c36c904538950e4b0093;p=oota-llvm.git [ELF] Add STN_UNDEF. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@175338 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Support/ELF.h b/include/llvm/Support/ELF.h index 3522ab41f34..2fe1d1bbd0c 100644 --- a/include/llvm/Support/ELF.h +++ b/include/llvm/Support/ELF.h @@ -1172,6 +1172,11 @@ enum { STV_PROTECTED = 3 // Visible in other components but not preemptable }; +// Symbol number. +enum { + STN_UNDEF = 0 +}; + // Relocation entry, without explicit addend. struct Elf32_Rel { Elf32_Addr r_offset; // Location (file byte offset, or program virtual addr)