Removes accessible assert

Backports commit 333bfdf65e55bcf6e3b03526a50f8c43aa6d4ca5 from qemu
This commit is contained in:
Catena cyber 2018-10-06 05:02:19 -04:00 committed by Lioncash
parent 2c9b6df879
commit 4199ce83bb
No known key found for this signature in database
GPG key ID: 4E3C3CC1031BA9C7

View file

@ -940,7 +940,8 @@ static TCGv gen_ea_mode(CPUM68KState *env, DisasContext *s, int mode, int reg0,
offset = read_im32(env, s);
break;
default:
g_assert_not_reached();
// Unicorn: Should not happen for OS_SINGLE
return tcg_ctx->NULL_QREG;
}
return mark_to_release(s, tcg_const_i32(tcg_ctx, offset));
default: