fpu: assuming e2k fp behave like x86

This commit is contained in:
Alibek Omarov 2020-12-09 21:55:53 +03:00 committed by Denis Drakhnia
parent 21b39b8206
commit 222940f0c5
1 changed files with 1 additions and 1 deletions

View File

@ -138,7 +138,7 @@ static void parts64_default_nan(FloatParts64 *p, float_status *status)
/* !snan_bit_is_one, set all bits */
frac = (1ULL << DECOMPOSED_BINARY_POINT) - 1;
#elif defined(TARGET_I386) || defined(TARGET_X86_64) \
|| defined(TARGET_MICROBLAZE)
|| defined(TARGET_MICROBLAZE) || defined(TARGET_E2K)
/* !snan_bit_is_one, set sign and msb */
frac = 1ULL << (DECOMPOSED_BINARY_POINT - 1);
sign = 1;