diff options
author | Michael J. Spencer <bigcheesegs@gmail.com> | 2013-02-16 01:56:36 +0000 |
---|---|---|
committer | Michael J. Spencer <bigcheesegs@gmail.com> | 2013-02-16 01:56:36 +0000 |
commit | 6d3a278aabb0007e75a6c36c904538950e4b0093 (patch) | |
tree | 46d545b693c68b24ff2c54f45ddefbb666c2741e /include/llvm/Support | |
parent | 901d80065c9afa0ba33e8546c2e1e99a00aceb14 (diff) |
[ELF] Add STN_UNDEF.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@175338 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support')
-rw-r--r-- | include/llvm/Support/ELF.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/llvm/Support/ELF.h b/include/llvm/Support/ELF.h index 3522ab41f3..2fe1d1bbd0 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) |