commit | 48a0eec1da22cd4b1227dcd9ff6a1c087c1d5a56 | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Sat Jun 21 19:47:44 2008 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Sat Jun 21 19:47:44 2008 +0000 |
tree | b0622530a87078d06b7aefd11cad3116fc1fc06d | |
parent | a1aabe422f139daebf9cada3d45a611687465ac5 [diff] [blame] |
fix warning when assertion disabled. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52588 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Bitcode/Reader/Deserialize.cpp b/lib/Bitcode/Reader/Deserialize.cpp index 113321f..2014557 100644 --- a/lib/Bitcode/Reader/Deserialize.cpp +++ b/lib/Bitcode/Reader/Deserialize.cpp
@@ -85,7 +85,7 @@ case bitc::END_BLOCK: { bool x = Stream.ReadBlockEnd(); - assert (!x && "Error at block end."); + assert(!x && "Error at block end."); x=x; BlockStack.pop_back(); continue; }