[llvm-commits] CVS: llvm/include/llvm/GlobalValue.h

Chris Lattner lattner at cs.uiuc.edu
Thu Apr 21 09:10:16 PDT 2005



Changes in directory llvm/include/llvm:

GlobalValue.h updated: 1.21 -> 1.22
---
Log message:

Add doxygen comments, patch contributed by Evan Jones.


---
Diffs of the changes:  (+6 -6)

 GlobalValue.h |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)


Index: llvm/include/llvm/GlobalValue.h
diff -u llvm/include/llvm/GlobalValue.h:1.21 llvm/include/llvm/GlobalValue.h:1.22
--- llvm/include/llvm/GlobalValue.h:1.21	Fri Jan 28 18:32:30 2005
+++ llvm/include/llvm/GlobalValue.h	Thu Apr 21 11:10:03 2005
@@ -28,12 +28,12 @@
   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,






More information about the llvm-commits mailing list