mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-15 07:39:31 +00:00
Fix comments.
llvm-svn: 146107
This commit is contained in:
parent
6146f79b7d
commit
3a984f96d7
@ -61,7 +61,7 @@ namespace bitc {
|
||||
MODULE_CODE_GLOBALVAR = 7,
|
||||
|
||||
// FUNCTION: [type, callingconv, isproto, linkage, paramattrs, alignment,
|
||||
// section, visibility]
|
||||
// section, visibility, gc, unnamed_addr]
|
||||
MODULE_CODE_FUNCTION = 8,
|
||||
|
||||
// ALIAS: [alias type, aliasee val#, linkage]
|
||||
|
@ -504,8 +504,8 @@ static void WriteModuleInfo(const Module *M, const ValueEnumerator &VE,
|
||||
|
||||
// Emit the function proto information.
|
||||
for (Module::const_iterator F = M->begin(), E = M->end(); F != E; ++F) {
|
||||
// FUNCTION: [type, callingconv, isproto, paramattr,
|
||||
// linkage, alignment, section, visibility, gc, unnamed_addr]
|
||||
// FUNCTION: [type, callingconv, isproto, linkage, paramattrs, alignment,
|
||||
// section, visibility, gc, unnamed_addr]
|
||||
Vals.push_back(VE.getTypeID(F->getType()));
|
||||
Vals.push_back(F->getCallingConv());
|
||||
Vals.push_back(F->isDeclaration());
|
||||
|
Loading…
Reference in New Issue
Block a user