diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2006-12-06 20:28:46 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2006-12-06 20:28:46 +0000 |
commit | ce10f8bb68d06cec21d140e3d9dba54ed1a6222c (patch) | |
tree | daeb214838998508d8772877050d95b7322cf5db | |
parent | c5e241b40aa9ea1426a8f7df637cea7b20603030 (diff) |
Fix some 80 col violations.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32286 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/GlobalValue.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/GlobalValue.h b/include/llvm/GlobalValue.h index 6aa830e628..c3b96f2ea7 100644 --- a/include/llvm/GlobalValue.h +++ b/include/llvm/GlobalValue.h @@ -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: |