Revision a4d2d1a0 target-alpha/op_helper.c

b/target-alpha/op_helper.c
904 904
    fa = t_to_float64(a);
905 905
    fb = t_to_float64(b);
906 906

  
907
    if (float64_is_quiet_nan(fa) || float64_is_quiet_nan(fb))
907
    if (float64_unordered_quiet(fa, fb, &FP_STATUS)) {
908 908
        return 0x4000000000000000ULL;
909
    else
909
    } else {
910 910
        return 0;
911
    }
911 912
}
912 913

  
913 914
uint64_t helper_cmpteq(uint64_t a, uint64_t b)

Also available in: Unified diff