diff options
Diffstat (limited to 'gcc/fortran/dump-parse-tree.c')
-rw-r--r-- | gcc/fortran/dump-parse-tree.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gcc/fortran/dump-parse-tree.c b/gcc/fortran/dump-parse-tree.c index e1e463f7..f9c92b2 100644 --- a/gcc/fortran/dump-parse-tree.c +++ b/gcc/fortran/dump-parse-tree.c @@ -540,6 +540,15 @@ gfc_show_expr (gfc_expr *p) } } +/* Show an expression for diagnostic purposes. */ +void +gfc_show_expr_n (const char * msg, gfc_expr *e) +{ + if (msg) + gfc_status (msg); + gfc_show_expr (e); + gfc_status_char ('\n'); +} /* Show symbol attributes. The flavor and intent are followed by whatever single bit attributes are present. */ |