Fix some 80 col violations.
authorReid Spencer <rspencer@reidspencer.com>
Wed, 6 Dec 2006 20:28:46 +0000 (20:28 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Wed, 6 Dec 2006 20:28:46 +0000 (20:28 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32286 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/GlobalValue.h

index 6aa830e62833a7b623fbd09f2df61811bb81d4d5..c3b96f2ea76fbbc04802b1b561cf4e65cedfa1fa 100644 (file)
@@ -29,13 +29,13 @@ class GlobalValue : public Constant {
 public:
   enum LinkageTypes {
     ExternalLinkage,     /// Externally visible function
-    LinkOnceLinkage,     /// Keep one copy of named function when linking (inline)
+    LinkOnceLinkage,     /// Keep one copy of 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)
     DLLImportLinkage,    /// Function to be imported from DLL
     DLLExportLinkage,    /// Function to be accessible from DLL
-    ExternalWeakLinkage, /// TBD: ExternalWeak linkage description
+    ExternalWeakLinkage, /// ExternalWeak linkage description
     GhostLinkage         /// Stand-in functions for streaming fns from BC files    
   };
 protected: