commit | 6de96a1b5d77b13719760d0143ef48e8670b6e20 | [log] [tgz] |
---|---|---|
author | Rafael Espindola <rafael.espindola@gmail.com> | Thu Jan 15 20:18:42 2009 +0000 |
committer | Rafael Espindola <rafael.espindola@gmail.com> | Thu Jan 15 20:18:42 2009 +0000 |
tree | ab6f61642a2e971790afdd47c806735afb828cdf | |
parent | 7ffcf93b2450ca373cdf3147744a029e9b00e095 [diff] [blame] |
Add the private linkage. llvm-svn: 62279
diff --git a/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp b/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp index 81a1a37..da400a7 100644 --- a/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp +++ b/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp
@@ -284,6 +284,7 @@ case GlobalValue::DLLExportLinkage: return 6; case GlobalValue::ExternalWeakLinkage: return 7; case GlobalValue::CommonLinkage: return 8; + case GlobalValue::PrivateLinkage: return 9; } }