gcc.texi (Passes): Update due to recent -fdce -> -fssa-dce changes.
authorJeffrey A Law <law@cygnus.com>
Fri, 29 Jun 2001 22:04:40 +0000 (22:04 +0000)
committerJeff Law <law@gcc.gnu.org>
Fri, 29 Jun 2001 22:04:40 +0000 (16:04 -0600)
        * gcc.texi (Passes): Update due to recent -fdce -> -fssa-dce
        changes.  Fix documentation for SSA DCE pass.

From-SVN: r43660

gcc/ChangeLog
gcc/doc/gcc.texi

index 1feafbef801eb1e93ba59030c55e23d9979964f9..aaa636eb5df7691b79adf539a23ae077ab186876 100644 (file)
@@ -5,6 +5,9 @@
 
 Fri Jun 29 12:27:24 2001  Jeffrey A Law  (law@cygnus.com)
 
+       * doc/gcc.texi (Passes): Update due to recent -fdce -> -fssa-dce
+       changes.  Fix documentation for SSA DCE pass.
+
        * ssa-dce.c (ssa_eliminate_dead_code): Renamed from
        eliminate_date_code.
        * ssa.h (ssa_eliminate_dead_code): Corresponding changes.
index 6601ab61c7afee72c2d317b3462aaa8a49fdecae..1535917ab71533793ab9957ad3127bf21ad68a11 100644 (file)
@@ -3425,13 +3425,14 @@ the input file name.
 @cindex dead code elimination
 @opindex fdce
 @item
-Dead Code Elimination.  Turned on by the @option{-fdce} option.
-This pass performs elimination of code considered unnecessary because it
-is never executed.  It operates in linear time.
+SSA Aggressive Dead Code Elimination.  Turned on by the @option{-fssa-dce}
+option.  This pass performs elimination of code considered unnecessary because
+it has no externally visible effects on the program.  It operates in
+linear time.
 
 @opindex dX
 The option @option{-dX} causes a debugging dump of the RTL code after
-this pass.  This dump file's name is made by appending @samp{.dce} to
+this pass.  This dump file's name is made by appending @samp{.ssadce} to
 the input file name.
 @end itemize
 @cindex global common subexpression elimination