From 344232c17931bb2c2a06b1cb33716b0b17f393fa Mon Sep 17 00:00:00 2001 From: "Michael J. Spencer" Date: Sat, 16 Feb 2013 01:56:36 +0000 Subject: [PATCH] [ELF] Add STN_UNDEF. llvm-svn: 175338 --- llvm/include/llvm/Support/ELF.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/llvm/include/llvm/Support/ELF.h b/llvm/include/llvm/Support/ELF.h index 3522ab4..2fe1d1b 100644 --- a/llvm/include/llvm/Support/ELF.h +++ b/llvm/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) -- 2.7.4