Remove <cassert>

This commit is contained in:
MerryMage 2016-08-19 01:53:24 +01:00
parent 192a0029be
commit 2d6a86e43c
6 changed files with 7 additions and 8 deletions

View file

@ -69,7 +69,7 @@ struct Jit::Impl {
for (CodePtr pos = block.code_ptr; pos < end;) {
char buffer[80];
size_t inst_size = LLVMDisasmInstruction(llvm_ctx, const_cast<u8*>(pos), remaining, (u64)pos, buffer, sizeof(buffer));
assert(inst_size);
ASSERT(inst_size);
for (CodePtr i = pos; i < pos + inst_size; i++)
result.append(Common::StringFromFormat("%02x ", *i));
for (size_t i = inst_size; i < 10; i++)