diff options
| author | Chris Lattner <sabre@nondot.org> | 2009-08-04 23:07:12 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2009-08-04 23:07:12 +0000 |
| commit | d89380fc280420ecc35db3fd820a5851c2c26b8b (patch) | |
| tree | b3acc6fc259e5daa73b96cfc494eae2d5af863bd /lib/Bitcode | |
| parent | cb9aac2401030a04a2588ebad653fe1320c05ba2 (diff) | |
| download | external_llvm-d89380fc280420ecc35db3fd820a5851c2c26b8b.zip external_llvm-d89380fc280420ecc35db3fd820a5851c2c26b8b.tar.gz external_llvm-d89380fc280420ecc35db3fd820a5851c2c26b8b.tar.bz2 | |
revert r78048, it isn't worth using assertingvh here.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78119 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Bitcode')
| -rw-r--r-- | lib/Bitcode/Writer/BitcodeWriter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Bitcode/Writer/BitcodeWriter.cpp b/lib/Bitcode/Writer/BitcodeWriter.cpp index a5c28fc..cb181d2 100644 --- a/lib/Bitcode/Writer/BitcodeWriter.cpp +++ b/lib/Bitcode/Writer/BitcodeWriter.cpp @@ -1088,7 +1088,7 @@ static void WriteValueSymbolTable(const ValueSymbolTable &VST, // VST_ENTRY: [valueid, namechar x N] // VST_BBENTRY: [bbid, namechar x N] unsigned Code; - if (isa<BasicBlock>(*SI->getValue())) { + if (isa<BasicBlock>(SI->getValue())) { Code = bitc::VST_CODE_BBENTRY; if (isChar6) AbbrevToUse = VST_BBENTRY_6_ABBREV; |
