mirror of
https://github.com/yuzu-emu/unicorn
synced 2024-11-24 11:28:11 +00:00
qemu/int128: Disable assert in int128.h
This mirrors the int128_get64() variant for the case when CONFIG_INT128 is not defined as 1, which was pre-existing in unicorn.
This commit is contained in:
parent
2beb139304
commit
a97d643944
1 changed files with 1 additions and 1 deletions
|
@ -21,7 +21,7 @@ static inline Int128 int128_make128(uint64_t lo, uint64_t hi)
|
|||
static inline uint64_t int128_get64(Int128 a)
|
||||
{
|
||||
uint64_t r = a;
|
||||
assert(r == a);
|
||||
//assert(r == a);
|
||||
return r;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue