From: Nick Kledzik Date: Fri, 29 Aug 2014 19:55:55 +0000 (+0000) Subject: Add missing mach-o EXPORT_SYMBOL_FLAG_KIND_ABSOLUTE X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=f1b5734cc8b7caa9f39dd986529bfb5d47d8752c;p=oota-llvm.git Add missing mach-o EXPORT_SYMBOL_FLAG_KIND_ABSOLUTE git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@216759 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Support/MachO.h b/include/llvm/Support/MachO.h index c053a453725..029566b6788 100644 --- a/include/llvm/Support/MachO.h +++ b/include/llvm/Support/MachO.h @@ -322,15 +322,16 @@ namespace llvm { }; enum { - EXPORT_SYMBOL_FLAGS_KIND_MASK = 0x03u, EXPORT_SYMBOL_FLAGS_WEAK_DEFINITION = 0x04u, EXPORT_SYMBOL_FLAGS_REEXPORT = 0x08u, EXPORT_SYMBOL_FLAGS_STUB_AND_RESOLVER = 0x10u }; enum ExportSymbolKind { + EXPORT_SYMBOL_FLAGS_KIND_MASK = 0x03u, EXPORT_SYMBOL_FLAGS_KIND_REGULAR = 0x00u, - EXPORT_SYMBOL_FLAGS_KIND_THREAD_LOCAL = 0x01u + EXPORT_SYMBOL_FLAGS_KIND_THREAD_LOCAL = 0x01u, + EXPORT_SYMBOL_FLAGS_KIND_ABSOLUTE = 0x02u };