diff options
author | John Hauser <jhauser@eecs.berkeley.edu> | 2015-01-08 18:39:15 -0800 |
---|---|---|
committer | John Hauser <jhauser@eecs.berkeley.edu> | 2015-01-08 18:39:15 -0800 |
commit | 9dd97e234d676ffdaf6a7b64d05e712651438a8a (patch) | |
tree | e9d3f5686090a3754fb22bc33e7474b97d912e63 /doc | |
parent | 7276b0022ec5f461af9c3b4a1fe2e5526825b58e (diff) | |
download | berkeley-softfloat-3-9dd97e234d676ffdaf6a7b64d05e712651438a8a.zip berkeley-softfloat-3-9dd97e234d676ffdaf6a7b64d05e712651438a8a.tar.gz berkeley-softfloat-3-9dd97e234d676ffdaf6a7b64d05e712651438a8a.tar.bz2 |
Fixed some minor errors in the documentation.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/SoftFloat-history.html | 2 | ||||
-rw-r--r-- | doc/SoftFloat-source.html | 4 | ||||
-rw-r--r-- | 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. <LI> Original release, based on work done for the International Computer Science -Institute (ICSI) in Berkely, California. +Institute (ICSI) in Berkeley, California. </UL> 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: <BLOCKQUOTE> <TABLE> -<COL WIDTH=*> +<COL> <COL WIDTH=10> -<COL WIDTH=*> +<COL> <TR> <TD VALIGN=TOP><NOBR>Par Lab:</NOBR></TD> <TD></TD> 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: <BLOCKQUOTE> <TABLE> -<COL WIDTH=*> +<COL> <COL WIDTH=10> -<COL WIDTH=*> +<COL> <TR> <TD VALIGN=TOP><NOBR>Par Lab:</NOBR></TD> <TD></TD> @@ -715,10 +715,10 @@ The functions have signatures as follows, depending on whether the floating-point input is passed by value or via pointers: <BLOCKQUOTE> <PRE> -int32_t f64_to_i32( float64_t <I>a</I>, uint_fast8_t <I>roundingMode</I>, bool <I>exact</I> ); +int_fast32_t f64_to_i32( float64_t <I>a</I>, uint_fast8_t <I>roundingMode</I>, bool <I>exact</I> ); </PRE> <PRE> -int32_t +int_fast32_t f128M_to_i32( const float128_t *<I>aPtr</I>, uint_fast8_t <I>roundingMode</I>, bool <I>exact</I> ); </PRE> </BLOCKQUOTE> @@ -769,10 +769,10 @@ The signatures for these functions are the same as above without the redundant <CODE><I>roundingMode</I></CODE> argument: <BLOCKQUOTE> <PRE> -int32_t f64_to_i32_r_minMag( float64_t <I>a</I>, bool <I>exact</I> ); +int_fast32_t f64_to_i32_r_minMag( float64_t <I>a</I>, bool <I>exact</I> ); </PRE> <PRE> -int32_t f128M_to_i32_r_minMag( const float128_t *<I>aPtr</I>, bool <I>exact</I> ); +int_fast32_t f128M_to_i32_r_minMag( const float128_t *<I>aPtr</I>, bool <I>exact</I> ); </PRE> </BLOCKQUOTE> </P> |