projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1da4862
)
Add missing mach-o EXPORT_SYMBOL_FLAG_KIND_ABSOLUTE
author
Nick Kledzik
<kledzik@apple.com>
Fri, 29 Aug 2014 19:55:55 +0000
(19:55 +0000)
committer
Nick Kledzik
<kledzik@apple.com>
Fri, 29 Aug 2014 19:55:55 +0000
(19:55 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@216759
91177308
-0d34-0410-b5e6-
96231b3b80d8
include/llvm/Support/MachO.h
patch
|
blob
|
history
diff --git
a/include/llvm/Support/MachO.h
b/include/llvm/Support/MachO.h
index c053a45372553b61d9045707e35c1461342debb1..029566b67889d79df94e5c83b4cfc2820a2cac6e 100644
(file)
--- 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
};