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:
Lioncash 2018-09-03 09:54:28 -04:00
parent 2beb139304
commit a97d643944
No known key found for this signature in database
GPG key ID: 4E3C3CC1031BA9C7

View file

@ -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;
}