Fix comments.

llvm-svn: 146107
This commit is contained in:
Chad Rosier
2011-12-07 23:57:55 +00:00
parent 3b559ff3c5
commit 42ee1522b6
2 changed files with 3 additions and 3 deletions

View File

@@ -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());