* parse.c (gfc_parse_file): Use gfc_dump_parse_tree.
authorFrancois-Xavier Coudert <fxcoudert@gcc.gnu.org>
Sun, 6 Apr 2008 12:18:56 +0000 (12:18 +0000)
committerFrançois-Xavier Coudert <fxcoudert@gcc.gnu.org>
Sun, 6 Apr 2008 12:18:56 +0000 (12:18 +0000)
From-SVN: r133959

gcc/fortran/ChangeLog
gcc/fortran/parse.c

index eaec1f5d29b86aad40de1d9bc6fe456e114e0ed3..64e5193a790fad3f99a6dc105e5d26376647bdf8 100644 (file)
@@ -12,6 +12,7 @@
        (gfc_handle_module_path_options): Use gfc_fatal_error instead of
        gfc_status and exit.
        (gfc_handle_option): Rename verbose into dump_parse_tree.
+       * parse.c (gfc_parse_file): Use gfc_dump_parse_tree.
 
 2008-04-05  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
            Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
index d7d81a1e30fc7b69ee7ef17e317edfd9b844ab6d..b133743c73943dc4553505fed7155d58f77031d4 100644 (file)
@@ -3566,8 +3566,8 @@ loop:
   gfc_resolve (gfc_current_ns);
 
   /* Dump the parse tree if requested.  */
-  if (gfc_option.verbose)
-    gfc_show_namespace (gfc_current_ns);
+  if (gfc_option.dump_parse_tree)
+    gfc_dump_parse_tree (gfc_current_ns, stdout);
 
   gfc_get_errors (NULL, &errors);
   if (s.state == COMP_MODULE)