diff options
author | Zhongxing Xu <xuzhongxing@gmail.com> | 2008-12-23 05:30:44 +0000 |
---|---|---|
committer | Zhongxing Xu <xuzhongxing@gmail.com> | 2008-12-23 05:30:44 +0000 |
commit | 3e910e9449773f94fa971047b76d4d88c7d017a2 (patch) | |
tree | a411d35431bbb2fd650800a30819fb5e00b8c436 /lib/Bitcode/Reader | |
parent | 9c069f75158fec687e61efcf8cc876a0ee720d38 (diff) | |
download | external_llvm-3e910e9449773f94fa971047b76d4d88c7d017a2.zip external_llvm-3e910e9449773f94fa971047b76d4d88c7d017a2.tar.gz external_llvm-3e910e9449773f94fa971047b76d4d88c7d017a2.tar.bz2 |
Remove dead code.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@61368 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Bitcode/Reader')
-rw-r--r-- | lib/Bitcode/Reader/Deserialize.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Bitcode/Reader/Deserialize.cpp b/lib/Bitcode/Reader/Deserialize.cpp index 2014557..99e9cdb 100644 --- a/lib/Bitcode/Reader/Deserialize.cpp +++ b/lib/Bitcode/Reader/Deserialize.cpp @@ -85,7 +85,7 @@ bool Deserializer::AdvanceStream() { case bitc::END_BLOCK: { bool x = Stream.ReadBlockEnd(); - assert(!x && "Error at block end."); x=x; + assert(!x && "Error at block end."); BlockStack.pop_back(); continue; } |