Commit e3d66ec3 by Rask Ingemann Lambertsen Committed by Rask Ingemann Lambertsen

re PR web/32965 (missing documentation for -ftree-dse)

	PR web/32965
	PR tree-optimization/13756
	* doc/invoke.texi (Options That Control Optimization): Document
	-ftree-dse.

From-SVN: r128146
parent 61fdc9d7
2007-09-05 Rask Ingemann Lambertsen <rask@sygehus.dk>
PR web/32965
PR tree-optimization/13756
* doc/invoke.texi (Options That Control Optimization): Document
-ftree-dse.
2007-09-05 Uros Bizjak <ubizjak@gmail.com>
* gcc/config/i386/cpuid.h: New file.
......
......@@ -5697,6 +5697,13 @@ simplification) based on a dominator tree traversal. This also
performs jump threading (to reduce jumps to jumps). This flag is
enabled by default at @option{-O} and higher.
@item -ftree-dse
@opindex ftree-dse
Perform dead store elimination (DSE) on trees. A dead store is a store into
a memory location which will later be overwritten by another store without
any intervening loads. In this case the earlier store can be deleted. This
flag is enabled by default at @option{-O} and higher.
@item -ftree-ch
Perform loop header copying on trees. This is beneficial since it increases
effectiveness of code motion optimizations. It also saves one jump. This flag
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment