diff options
author | Chris Lattner <sabre@nondot.org> | 2005-04-21 16:10:03 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-04-21 16:10:03 +0000 |
commit | f68563ff8ab7f0bf9b482ae21df561f0151ca1c4 (patch) | |
tree | 053251d9d9473fd21d63f5d338ff9906757c7f94 /include | |
parent | a5ed1bd00bb52333779a86d5399ef79b8278c19a (diff) |
Add doxygen comments, patch contributed by Evan Jones.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21397 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/GlobalValue.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/llvm/GlobalValue.h b/include/llvm/GlobalValue.h index 60176c588d3..f28952febd4 100644 --- a/include/llvm/GlobalValue.h +++ b/include/llvm/GlobalValue.h @@ -28,12 +28,12 @@ class GlobalValue : public Constant { GlobalValue(const GlobalValue &); // do not implement public: enum LinkageTypes { - ExternalLinkage, // Externally visible function - 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) - GhostLinkage // Stand-in functions for streaming fns from BC files + ExternalLinkage, /// Externally visible function + 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) + GhostLinkage /// Stand-in functions for streaming fns from BC files }; protected: GlobalValue(const Type *Ty, ValueTy vty, Use *Ops, unsigned NumOps, |