From 9dd97e234d676ffdaf6a7b64d05e712651438a8a Mon Sep 17 00:00:00 2001 From: John Hauser Date: Thu, 8 Jan 2015 18:39:15 -0800 Subject: Fixed some minor errors in the documentation. --- doc/SoftFloat-history.html | 2 +- doc/SoftFloat-source.html | 4 ++-- doc/SoftFloat.html | 12 ++++++------ 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/doc/SoftFloat-history.html b/doc/SoftFloat-history.html index 65e3ca2..9357ca9 100644 --- a/doc/SoftFloat-history.html +++ b/doc/SoftFloat-history.html @@ -133,7 +133,7 @@ tininess is detected before or after rounding.
  • Original release, based on work done for the International Computer Science -Institute (ICSI) in Berkely, California. +Institute (ICSI) in Berkeley, California. diff --git a/doc/SoftFloat-source.html b/doc/SoftFloat-source.html index bb39cb0..c2b14a5 100644 --- a/doc/SoftFloat-source.html +++ b/doc/SoftFloat-source.html @@ -121,9 +121,9 @@ The work was officially overseen by Prof. Krste Asanovic, with funding provided by these sources:
    -+-+ diff --git a/doc/SoftFloat.html b/doc/SoftFloat.html index d406d91..db0af30 100644 --- a/doc/SoftFloat.html +++ b/doc/SoftFloat.html @@ -157,9 +157,9 @@ The work was officially overseen by Prof. Krste Asanovic, with funding provided by these sources:
    Par Lab:
    -+-+ @@ -715,10 +715,10 @@ The functions have signatures as follows, depending on whether the floating-point input is passed by value or via pointers:
    -int32_t f64_to_i32( float64_t a, uint_fast8_t roundingMode, bool exact );
    +int_fast32_t f64_to_i32( float64_t a, uint_fast8_t roundingMode, bool exact );
     
    -int32_t
    +int_fast32_t
      f128M_to_i32( const float128_t *aPtr, uint_fast8_t roundingMode, bool exact );
     
    @@ -769,10 +769,10 @@ The signatures for these functions are the same as above without the redundant roundingMode argument:
    -int32_t f64_to_i32_r_minMag( float64_t a, bool exact );
    +int_fast32_t f64_to_i32_r_minMag( float64_t a, bool exact );
     
    -int32_t f128M_to_i32_r_minMag( const float128_t *aPtr, bool exact );
    +int_fast32_t f128M_to_i32_r_minMag( const float128_t *aPtr, bool exact );
     

    -- cgit v1.1
    Par Lab: