diff options
author | Tobias Schlüter <tobi@gcc.gnu.org> | 2005-02-24 19:26:27 +0100 |
---|---|---|
committer | Tobias Schlüter <tobi@gcc.gnu.org> | 2005-02-24 19:26:27 +0100 |
commit | cb9e4f55b0bfcbf3b25213774193d4a4bb8a8342 (patch) | |
tree | 2139266e39d005be3049810c27d9856644ae20f4 /gcc/fortran/dump-parse-tree.c | |
parent | ef6201a68e43c0c72daadaafaff4a76dad8b0262 (diff) | |
download | gcc-cb9e4f55b0bfcbf3b25213774193d4a4bb8a8342.zip gcc-cb9e4f55b0bfcbf3b25213774193d4a4bb8a8342.tar.gz gcc-cb9e4f55b0bfcbf3b25213774193d4a4bb8a8342.tar.bz2 |
Unrevert previously reversed patch, adding this patch:
* module.c (find_true_name): Deal with NULL module.
From-SVN: r95506
Diffstat (limited to 'gcc/fortran/dump-parse-tree.c')
-rw-r--r-- | gcc/fortran/dump-parse-tree.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/fortran/dump-parse-tree.c b/gcc/fortran/dump-parse-tree.c index e60b4c0..f8df9da 100644 --- a/gcc/fortran/dump-parse-tree.c +++ b/gcc/fortran/dump-parse-tree.c @@ -106,7 +106,7 @@ gfc_show_actual_arglist (gfc_actual_arglist * a) for (; a; a = a->next) { gfc_status_char ('('); - if (a->name[0] != '\0') + if (a->name != NULL) gfc_status ("%s = ", a->name); if (a->expr != NULL) gfc_show_expr (a->expr); |