mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-14 07:31:39 +00:00
Add doxygen comments, patch contributed by Evan Jones.
llvm-svn: 21397
This commit is contained in:
parent
9d2c6a3981
commit
4c73570c42
@ -28,12 +28,12 @@ class GlobalValue : public Constant {
|
||||
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,
|
||||
|
Loading…
x
Reference in New Issue
Block a user