aboutsummaryrefslogtreecommitdiff
path: root/source/test_a_f16_z_ui32_x.c
diff options
context:
space:
mode:
authorJohn Hauser <jhauser@eecs.berkeley.edu>2018-01-26 12:52:36 -0800
committerJohn Hauser <jhauser@eecs.berkeley.edu>2018-01-26 12:52:36 -0800
commit06b20075dd3c1a5d0dd007a93643282832221612 (patch)
tree5ccf80c275685bccd4f0b4de41c66cf7dbbf34b4 /source/test_a_f16_z_ui32_x.c
parent0d2862cdb35361d47548020b97dc60b58d53d048 (diff)
downloadberkeley-testfloat-3-06b20075dd3c1a5d0dd007a93643282832221612.zip
berkeley-testfloat-3-06b20075dd3c1a5d0dd007a93643282832221612.tar.gz
berkeley-testfloat-3-06b20075dd3c1a5d0dd007a93643282832221612.tar.bz2
Release 3e. See "doc/TestFloat-history.html".
Diffstat (limited to 'source/test_a_f16_z_ui32_x.c')
-rw-r--r--source/test_a_f16_z_ui32_x.c13
1 files changed, 4 insertions, 9 deletions
diff --git a/source/test_a_f16_z_ui32_x.c b/source/test_a_f16_z_ui32_x.c
index 7d68ec6..392c3bd 100644
--- a/source/test_a_f16_z_ui32_x.c
+++ b/source/test_a_f16_z_ui32_x.c
@@ -1,11 +1,11 @@
/*============================================================================
-This C source file is part of TestFloat, Release 3d, a package of programs for
+This C source file is part of TestFloat, Release 3e, a package of programs for
testing the correctness of floating-point arithmetic complying with the IEEE
Standard for Floating-Point, by John R. Hauser.
-Copyright 2011, 2012, 2013, 2014, 2015, 2016, 2017 The Regents of the
+Copyright 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018 The Regents of the
University of California. All rights reserved.
Redistribution and use in source and binary forms, with or without
@@ -81,15 +81,10 @@ void
}
if ( (trueZ != subjZ) || (trueFlags != subjFlags) ) {
if (
- ! verCases_checkNaNs && f16_isSignalingNaN( genCases_f16_a )
- ) {
- trueFlags |= softfloat_flag_invalid;
- }
- if (
- (trueZ != 0xFFFFFFFF)
- || (subjZ != 0xFFFFFFFF)
+ verCases_checkInvInts
|| (trueFlags != softfloat_flag_invalid)
|| (subjFlags != softfloat_flag_invalid)
+ || ((subjZ != 0xFFFFFFFF) && (subjZ != 0))
) {
++verCases_errorCount;
verCases_writeErrorFound( 10000 - count );