Fix some 80 col violations.

llvm-svn: 32286
This commit is contained in:
Reid Spencer 2006-12-06 20:28:46 +00:00
parent aeadac88ea
commit b95504d8f5
1 changed files with 2 additions and 2 deletions

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: