Fix some 80 col violations.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32286 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Reid Spencer 2006-12-06 20:28:46 +00:00
parent c5e241b40a
commit ce10f8bb68

View 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: