diff options
author | Chad Rosier <mcrosier@apple.com> | 2011-12-07 23:57:55 +0000 |
---|---|---|
committer | Chad Rosier <mcrosier@apple.com> | 2011-12-07 23:57:55 +0000 |
commit | 42ee1522b6fa9b138dfccbf2a0e50a49a50ccf60 (patch) | |
tree | aebe8e71bb13b699ff999cdcde9082faee1dac98 /llvm/lib/Bitcode/Writer/BitcodeWriter.cpp | |
parent | 3b559ff3c5bc3a2e1ad650c3dfd50988b29515a5 (diff) | |
download | bcm5719-llvm-42ee1522b6fa9b138dfccbf2a0e50a49a50ccf60.tar.gz bcm5719-llvm-42ee1522b6fa9b138dfccbf2a0e50a49a50ccf60.zip |
Fix comments.
llvm-svn: 146107
Diffstat (limited to 'llvm/lib/Bitcode/Writer/BitcodeWriter.cpp')
-rw-r--r-- | llvm/lib/Bitcode/Writer/BitcodeWriter.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp b/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp index 9c755aecf97..5bf52400c7c 100644 --- a/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp +++ b/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp @@ -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()); |