* gcse.c: Remove an obsolete comment.
authorKazu Hirata <kazu@cs.umass.edu>
Mon, 21 Feb 2005 00:23:50 +0000 (00:23 +0000)
committerKazu Hirata <kazu@gcc.gnu.org>
Mon, 21 Feb 2005 00:23:50 +0000 (00:23 +0000)
From-SVN: r95318

gcc/ChangeLog
gcc/gcse.c

index 7ccb4afa1fdce50b27e4d29657cca1610d752b1d..33f411f936dea8060e2bd3b1b7e0301307fbd800 100644 (file)
@@ -1,3 +1,7 @@
+2005-02-20  Kazu Hirata  <kazu@cs.umass.edu>
+
+       * gcse.c: Remove an obsolete comment.
+
 2005-02-20  Hans-Peter Nilsson  <hp@axis.com>
 
        * doc/extend.texi (Function Attributes) <Attribute const>: The
index 757f946738cbcaa3fd06e9d310cc1863afc26f5e..39a844f972b9cb223e301cba6e782eb1ec0efb06 100644 (file)
@@ -264,19 +264,8 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
    the result of the expression is copied to a new register, and the redundant
    expression is deleted by replacing it with this new register.  Classic GCSE
    doesn't have this problem as much as it computes the reaching defs of
-   each register in each block and thus can try to use an existing register.
-
-   **********************
-
-   A fair bit of simplicity is created by creating small functions for simple
-   tasks, even when the function is only called in one place.  This may
-   measurably slow things down [or may not] by creating more function call
-   overhead than is necessary.  The source is laid out so that it's trivial
-   to make the affected functions inline so that one can measure what speed
-   up, if any, can be achieved, and maybe later when things settle things can
-   be rearranged.
-
-   Help stamp out big monolithic functions!  */
+   each register in each block and thus can try to use an existing
+   register.  */
 \f
 /* GCSE global vars.  */