Add doxygen comments, patch contributed by Evan Jones.
authorChris Lattner <sabre@nondot.org>
Thu, 21 Apr 2005 16:10:03 +0000 (16:10 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 21 Apr 2005 16:10:03 +0000 (16:10 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21397 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/GlobalValue.h

index 60176c588d37a4fd66d6cbecb935f1b3f7a28afe..f28952febd411ed80fbfd5b03526c890d3bad92d 100644 (file)
@@ -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,