aboutsummaryrefslogtreecommitdiff
path: root/source/include/internals.h
diff options
context:
space:
mode:
authorJohn Hauser <jhauser@eecs.berkeley.edu>2017-02-10 12:35:21 -0800
committerJohn Hauser <jhauser@eecs.berkeley.edu>2017-02-10 12:35:21 -0800
commit9d731d45e86ae28cf13b0094979577061e0e811c (patch)
tree0fb71733a01f5b8975ae1bf77b09a1c9edaac407 /source/include/internals.h
parentcb5087cd7403acf31ac24ac4be8e019a51904895 (diff)
downloadberkeley-softfloat-3-9d731d45e86ae28cf13b0094979577061e0e811c.zip
berkeley-softfloat-3-9d731d45e86ae28cf13b0094979577061e0e811c.tar.gz
berkeley-softfloat-3-9d731d45e86ae28cf13b0094979577061e0e811c.tar.bz2
Release 3c. See "doc/SoftFloat-history.html".
Diffstat (limited to 'source/include/internals.h')
-rw-r--r--source/include/internals.h21
1 files changed, 9 insertions, 12 deletions
diff --git a/source/include/internals.h b/source/include/internals.h
index 9045f6c..2722482 100644
--- a/source/include/internals.h
+++ b/source/include/internals.h
@@ -2,10 +2,10 @@
/*============================================================================
This C header file is part of the SoftFloat IEEE Floating-Point Arithmetic
-Package, Release 3b, by John R. Hauser.
+Package, Release 3c, by John R. Hauser.
-Copyright 2011, 2012, 2013, 2014, 2015, 2016 The Regents of the University of
-California. All rights reserved.
+Copyright 2011, 2012, 2013, 2014, 2015, 2016, 2017 The Regents of the
+University of California. All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
@@ -58,27 +58,24 @@ enum {
/*----------------------------------------------------------------------------
*----------------------------------------------------------------------------*/
-uint_fast32_t
- softfloat_roundPackToUI32( bool, uint_fast64_t, uint_fast8_t, bool );
+uint_fast32_t softfloat_roundToUI32( bool, uint_fast64_t, uint_fast8_t, bool );
#ifdef SOFTFLOAT_FAST_INT64
uint_fast64_t
- softfloat_roundPackToUI64(
+ softfloat_roundToUI64(
bool, uint_fast64_t, uint_fast64_t, uint_fast8_t, bool );
#else
-uint_fast64_t
- softfloat_roundPackMToUI64( bool, uint32_t *, uint_fast8_t, bool );
+uint_fast64_t softfloat_roundMToUI64( bool, uint32_t *, uint_fast8_t, bool );
#endif
-int_fast32_t
- softfloat_roundPackToI32( bool, uint_fast64_t, uint_fast8_t, bool );
+int_fast32_t softfloat_roundToI32( bool, uint_fast64_t, uint_fast8_t, bool );
#ifdef SOFTFLOAT_FAST_INT64
int_fast64_t
- softfloat_roundPackToI64(
+ softfloat_roundToI64(
bool, uint_fast64_t, uint_fast64_t, uint_fast8_t, bool );
#else
-int_fast64_t softfloat_roundPackMToI64( bool, uint32_t *, uint_fast8_t, bool );
+int_fast64_t softfloat_roundMToI64( bool, uint32_t *, uint_fast8_t, bool );
#endif
/*----------------------------------------------------------------------------