aboutsummaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorJohn Hauser <jhauser@eecs.berkeley.edu>2015-02-19 14:15:43 -0800
committerJohn Hauser <jhauser@eecs.berkeley.edu>2015-02-19 14:15:43 -0800
commita926ed3c9651b07e0615b36502bf16871345143f (patch)
treefa4d7f1222608d88d8b0639f3c3064466d83f4d0 /source
parenta4ea50c15c15beb1890566ea8f75e7ceb0cda6e6 (diff)
downloadberkeley-testfloat-3-a926ed3c9651b07e0615b36502bf16871345143f.zip
berkeley-testfloat-3-a926ed3c9651b07e0615b36502bf16871345143f.tar.gz
berkeley-testfloat-3-a926ed3c9651b07e0615b36502bf16871345143f.tar.bz2
Fixed a missing comma that prevented compilation on big-endian machines.
Reboot the official release date (for the last time) to be 2015 Feb 16.
Diffstat (limited to 'source')
-rw-r--r--source/slowfloat.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/slowfloat.c b/source/slowfloat.c
index ac54bb5..0d2157e 100644
--- a/source/slowfloat.c
+++ b/source/slowfloat.c
@@ -5,10 +5,10 @@ This C source file is part of TestFloat, Release 3, 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 The Regents of the University of California
-(Regents). All Rights Reserved. Redistribution and use in source and binary
-forms, with or without modification, are permitted provided that the following
-conditions are met:
+Copyright 2011, 2012, 2013, 2014, 2015 The Regents of the University of
+California (Regents). All Rights Reserved. Redistribution and use in source
+and binary forms, with or without modification, are permitted provided that
+the following conditions are met:
Redistributions of source code must retain the above copyright notice,
this list of conditions, and the following two paragraphs of disclaimer.
@@ -1488,7 +1488,7 @@ static bool floatXLt( const struct floatX *xPtr, const struct floatX *yPtr )
#ifdef LITTLEENDIAN
struct uint256 { uint64_t v0, v64, v128, v192; };
#else
-struct uint256 { uint64_t v192, v128 v64, v0; };
+struct uint256 { uint64_t v192, v128, v64, v0; };
#endif
static bool eq256M( const struct uint256 *aPtr, const struct uint256 *bPtr )