aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorRichard Guenther <rguenther@suse.de>2009-08-03 10:29:08 +0000
committerRichard Biener <rguenth@gcc.gnu.org>2009-08-03 10:29:08 +0000
commit2329c6f56d3724a337ed9dfcf5f0e7412a1406d8 (patch)
tree6901f2ff929063f3021e29ef99c389571329bb9f /gcc
parentd055ce45a4c9069f0831f80bd59fc5424855904f (diff)
downloadgcc-2329c6f56d3724a337ed9dfcf5f0e7412a1406d8.zip
gcc-2329c6f56d3724a337ed9dfcf5f0e7412a1406d8.tar.gz
gcc-2329c6f56d3724a337ed9dfcf5f0e7412a1406d8.tar.bz2
tree-cfg.c (pass_warn_unused_result): Mark name that no dump file will be created.
2009-08-03 Richard Guenther <rguenther@suse.de> * tree-cfg.c (pass_warn_unused_result): Mark name that no dump file will be created. * omp-low.c (pass_diagnose_omp_blocks): Likewise. * toplev.c (compile_file): Adjust comment. From-SVN: r150369
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog7
-rw-r--r--gcc/omp-low.c2
-rw-r--r--gcc/toplev.c3
-rw-r--r--gcc/tree-cfg.c2
4 files changed, 10 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 3fb3452..01aec82 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,10 @@
+2009-08-03 Richard Guenther <rguenther@suse.de>
+
+ * tree-cfg.c (pass_warn_unused_result): Mark name that no dump
+ file will be created.
+ * omp-low.c (pass_diagnose_omp_blocks): Likewise.
+ * toplev.c (compile_file): Adjust comment.
+
2009-08-03 Kaz Kojima <kkojima@gcc.gnu.org>
* config/sh/sh-protos.h (sh_promote_function_mode): Remove.
diff --git a/gcc/omp-low.c b/gcc/omp-low.c
index 3a4a1f4..087f6fc 100644
--- a/gcc/omp-low.c
+++ b/gcc/omp-low.c
@@ -6931,7 +6931,7 @@ struct gimple_opt_pass pass_diagnose_omp_blocks =
{
{
GIMPLE_PASS,
- "diagnose_omp_blocks", /* name */
+ "*diagnose_omp_blocks", /* name */
gate_diagnose_omp_blocks, /* gate */
diagnose_omp_structured_block_errors, /* execute */
NULL, /* sub */
diff --git a/gcc/toplev.c b/gcc/toplev.c
index 9ed24d8..bb7633f 100644
--- a/gcc/toplev.c
+++ b/gcc/toplev.c
@@ -1034,8 +1034,7 @@ compile_file (void)
ggc_protect_identifiers = false;
- /* This must also call cgraph_finalize_compilation_unit and
- cgraph_optimize. */
+ /* This must also call cgraph_finalize_compilation_unit. */
lang_hooks.decls.final_write_globals ();
if (errorcount || sorrycount)
diff --git a/gcc/tree-cfg.c b/gcc/tree-cfg.c
index a6097ed..3b99d6c 100644
--- a/gcc/tree-cfg.c
+++ b/gcc/tree-cfg.c
@@ -7456,7 +7456,7 @@ struct gimple_opt_pass pass_warn_unused_result =
{
{
GIMPLE_PASS,
- "warn_unused_result", /* name */
+ "*warn_unused_result", /* name */
gate_warn_unused_result, /* gate */
run_warn_unused_result, /* execute */
NULL, /* sub */