diff options
| author | razya <razya@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-10-15 15:16:25 +0000 |
|---|---|---|
| committer | razya <razya@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-10-15 15:16:25 +0000 |
| commit | 6dd98870f89114ea46a2742877ac73210e0b00a3 (patch) | |
| tree | 5e10f5255beebdc67a03dfb25bd4f925343b879c | |
| parent | abfb4f34ac5bbaa2afde87cd75a1dd19cf722413 (diff) | |
| download | ppe42-gcc-6dd98870f89114ea46a2742877ac73210e0b00a3.tar.gz ppe42-gcc-6dd98870f89114ea46a2742877ac73210e0b00a3.zip | |
2007-10-15 Razya Ladelsky <razya@il.ibm.com>
* matrix-reorg.c (gate_matrix_reorg): Don't comment out whole
program flag.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@129351 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 5 | ||||
| -rw-r--r-- | gcc/matrix-reorg.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 7fc03860542..f2849b944cc 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2007-10-15 Razya Ladelsky <razya@il.ibm.com> + + * matrix-reorg.c (gate_matrix_reorg): Don't comment out whole + program flag. + 2007-10-15 Jakub Jelinek <jakub@redhat.com> PR tree-optimization/33619 diff --git a/gcc/matrix-reorg.c b/gcc/matrix-reorg.c index f70b048cd64..38b0d5e146b 100644 --- a/gcc/matrix-reorg.c +++ b/gcc/matrix-reorg.c @@ -2314,7 +2314,7 @@ matrix_reorg (void) static bool gate_matrix_reorg (void) { - return flag_ipa_matrix_reorg /*&& flag_whole_program */ ; + return flag_ipa_matrix_reorg && flag_whole_program; } struct tree_opt_pass pass_ipa_matrix_reorg = { |

