qemu with hax to log dma reads & writes jcs.org/2018/11/12/vfio

tests/fp: enable f128_to_ui[32/64] tests in float-to-uint

We've just added f128_to_ui32 and we missed out the f128_to_ui64 tests
last time.

Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>

+4 -3
+4 -3
tests/Makefile.include
··· 909 909 910 910 # Conversion Routines: 911 911 # FIXME: i32_to_extF80 (broken), i64_to_extF80 (broken) 912 - # ui32_to_f128 (not implemented), f128_to_ui32 (not implemented) 913 - # extF80_roundToInt (broken) 912 + # ui32_to_f128 (not implemented), extF80_roundToInt (broken) 914 913 # 915 914 check-softfloat-conv: $(FP_TEST_BIN) 916 915 $(call test-softfloat, \ ··· 939 938 f16_to_ui32 f16_to_ui32_r_minMag \ 940 939 f32_to_ui32 f32_to_ui32_r_minMag \ 941 940 f64_to_ui32 f64_to_ui32_r_minMag \ 941 + f128_to_ui32 f128_to_ui32_r_minMag \ 942 942 f16_to_ui64 f16_to_ui64_r_minMag \ 943 943 f32_to_ui64 f32_to_ui64_r_minMag \ 944 - f64_to_ui64 f64_to_ui64_r_minMag, \ 944 + f64_to_ui64 f64_to_ui64_r_minMag \ 945 + f128_to_ui64 f128_to_ui64_r_minMag, \ 945 946 float-to-uint) 946 947 $(call test-softfloat, \ 947 948 f16_roundToInt f32_roundToInt \