Removes accessible assert (#1022)

This commit is contained in:
Catena cyber 2018-09-24 14:21:30 +02:00 committed by Nguyen Anh Quynh
parent 46999575fb
commit 333bfdf65e
1 changed files with 2 additions and 1 deletions

View File

@ -664,7 +664,8 @@ static TCGv gen_ea(CPUM68KState *env, DisasContext *s, uint16_t insn,
offset = read_im32(env, s);
break;
default:
g_assert_not_reached();
// Should not happen : for OS_SIGNLE
return *(TCGv *)tcg_ctx->NULL_QREG;
}
return tcg_const_i32(tcg_ctx, offset);
default: