This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH INSTALLED]: document fdim in gcc-4.3/changes.html


As per the recent addition of compile-time fdim evaluation via MPFR, I've
updated the gcc-4.3 changes webpage to reflect that in the list of
functions handled.

It's mostly whitespace reformatting, the real change is just adding
"<code>fdim</code>," in the right spot.

Installed as obvious.

                --Kaveh


Index: changes.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.3/changes.html,v
retrieving revision 1.23
diff -u -p -r1.23 changes.html
--- changes.html	18 Jan 2007 17:16:35 -0000	1.23
+++ changes.html	20 Jan 2007 14:28:27 -0000
@@ -42,16 +42,17 @@
     <code>atan2</code>, <code>atanh</code>, <code>cbrt</code>,
     <code>cos</code>, <code>cosh</code>, <code>erf</code>,
     <code>erfc</code>, <code>exp</code>, <code>exp10</code>,
-    <code>exp2</code>, <code>expm1</code>, <code>fma</code>,
-    <code>fmax</code>, <code>fmin</code>, <code>hypot</code>,
-    <code>log</code>, <code>log10</code>, <code>log1p</code>,
-    <code>log2</code>, <code>pow</code>, <code>pow10</code>,
-    <code>sin</code>, <code>sincos</code>, <code>sinh</code>,
-    <code>tan</code>, <code>tanh</code> and <code>tgamma</code>.  The
-    <code>float</code> and <code>long double</code> variants of these
-    functions (e.g. <code>sinf</code> and <code>sinl</code>) are also
-    handled.  (The <code>sqrt</code> and related functions were
-    already optimized in prior GCC releases.)  </li>
+    <code>exp2</code>, <code>expm1</code>, <code>fdim</code>,
+    <code>fma</code>, <code>fmax</code>, <code>fmin</code>,
+    <code>hypot</code>, <code>log</code>, <code>log10</code>,
+    <code>log1p</code>, <code>log2</code>, <code>pow</code>,
+    <code>pow10</code>, <code>sin</code>, <code>sincos</code>,
+    <code>sinh</code>, <code>tan</code>, <code>tanh</code> and
+    <code>tgamma</code>.  The <code>float</code> and <code>long
+    double</code> variants of these functions (e.g. <code>sinf</code>
+    and <code>sinl</code>) are also handled.  (The <code>sqrt</code>
+    and related functions were already optimized in prior GCC
+    releases.)  </li>

     <li>A new <em>forward propagation</em> pass on RTL was added.  The new pass
       replaces several slower transformations, resulting in compile-time


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]