diff options
author | Razya Ladelsky <razya@il.ibm.com> | 2007-05-28 11:10:27 +0000 |
---|---|---|
committer | Razya Ladelsky <razya@gcc.gnu.org> | 2007-05-28 11:10:27 +0000 |
commit | 43d861a5bc03c1c9ed1dde4ca7bf1593771d7e6e (patch) | |
tree | 438fd56569603b56035ec8c6adb7973791f877e6 /gcc/passes.c | |
parent | 4322c52f38afc74665f55412d31adb2fcb85d80a (diff) | |
download | gcc-43d861a5bc03c1c9ed1dde4ca7bf1593771d7e6e.zip gcc-43d861a5bc03c1c9ed1dde4ca7bf1593771d7e6e.tar.gz gcc-43d861a5bc03c1c9ed1dde4ca7bf1593771d7e6e.tar.bz2 |
matrix-reorg.c: New file.
2007-05-07 Razya Ladelsky <razya@il.ibm.com>
* matrix-reorg.c: New file. Implement matrix flattening and transposing
optimization.
* tree-pass.h: Add matrix reorg pass.
* common.opt: Add fipa-mreorg flag.
* Makefile.in: Add matrix-reorg.c.
* passes.c: Add matrix reorg pass.
* varpool.c (add_new_static_var): New function.
* cgraph.h (add_new_static_var): Declare.
From-SVN: r125126
Diffstat (limited to 'gcc/passes.c')
-rw-r--r-- | gcc/passes.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/passes.c b/gcc/passes.c index 8f7ab85..f50b7a5 100644 --- a/gcc/passes.c +++ b/gcc/passes.c @@ -506,6 +506,7 @@ init_optimization_passes (void) NEXT_PASS (pass_inline_parameters); } NEXT_PASS (pass_ipa_increase_alignment); + NEXT_PASS (pass_ipa_matrix_reorg); NEXT_PASS (pass_ipa_cp); NEXT_PASS (pass_ipa_inline); NEXT_PASS (pass_ipa_reference); |