diff options
author | Peter Collingbourne <peter@pcc.me.uk> | 2015-02-04 00:42:45 +0000 |
---|---|---|
committer | Peter Collingbourne <peter@pcc.me.uk> | 2015-02-04 00:42:45 +0000 |
commit | 69ba0167b35eb27474dc67f69a466eb6b5971484 (patch) | |
tree | 1ba22b401fddb6ca8a06c6d2b51ee80dac89c103 /llvm/lib/Bitcode/Writer | |
parent | 8031d28823cb3abb951b501da86402f898d48979 (diff) | |
download | bcm5719-llvm-69ba0167b35eb27474dc67f69a466eb6b5971484.tar.gz bcm5719-llvm-69ba0167b35eb27474dc67f69a466eb6b5971484.zip |
Misc documentation/comment fixes.
llvm-svn: 228093
Diffstat (limited to 'llvm/lib/Bitcode/Writer')
-rw-r--r-- | llvm/lib/Bitcode/Writer/BitcodeWriter.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp b/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp index 3aa1ef9a707..5b502bce2bc 100644 --- a/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp +++ b/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp @@ -654,7 +654,8 @@ static void WriteModuleInfo(const Module *M, const ValueEnumerator &VE, // GLOBALVAR: [type, isconst, initid, // linkage, alignment, section, visibility, threadlocal, - // unnamed_addr, externally_initialized, dllstorageclass] + // unnamed_addr, externally_initialized, dllstorageclass, + // comdat] Vals.push_back(VE.getTypeID(GV.getType())); Vals.push_back(GV.isConstant()); Vals.push_back(GV.isDeclaration() ? 0 : |