diff options
-rw-r--r-- | include/llvm/GlobalValue.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/llvm/GlobalValue.h b/include/llvm/GlobalValue.h index bba6ff1111..5b2c546a01 100644 --- a/include/llvm/GlobalValue.h +++ b/include/llvm/GlobalValue.h @@ -32,7 +32,8 @@ public: LinkOnceLinkage, // Keep one copy of named function when linking (inline) WeakLinkage, // Keep one copy of named function when linking (weak) AppendingLinkage, // Special purpose, only applies to global arrays - InternalLinkage // Rename collisions when linking (static functions) + InternalLinkage, // Rename collisions when linking (static functions) + GhostLinkage // Stand-in functions for streaming fns from BC files }; protected: GlobalValue(const Type *Ty, ValueTy vty, LinkageTypes linkage, |