1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00

Add comments to function.

llvm-svn: 58781
This commit is contained in:
Bill Wendling 2008-11-05 23:42:27 +00:00
parent ce97712aa6
commit 538cbf1e09

View File

@ -224,6 +224,12 @@ GlobalVariable *Module::getGlobalVariable(const std::string &Name,
return 0;
}
/// getOrInsertGlobal - Look up the specified global in the module symbol table.
/// 1. If it does not exist, add a declaration of the global and return it.
/// 2. Else, the global exists but has the wrong type: return the function
/// with a constantexpr cast to the right type.
/// 3. Finally, if the existing global is the correct delclaration, return the
/// existing global.
Constant *Module::getOrInsertGlobal(const std::string &Name, const Type *Ty) {
ValueSymbolTable &SymTab = getValueSymbolTable();