diff options
author | Bernhard Fischer <aldot@gcc.gnu.org> | 2008-01-27 17:48:54 +0100 |
---|---|---|
committer | Bernhard Reutner-Fischer <aldot@gcc.gnu.org> | 2008-01-27 17:48:54 +0100 |
commit | f749d3c6c4ce94acf33b9e162741f15f58ac280c (patch) | |
tree | c3bcf1921924796f3e58358b2123676a144dd304 /gcc/tree-pretty-print.c | |
parent | fed6d628493ab74e3c2cb35a7d6f578c01c40d4d (diff) | |
download | gcc-f749d3c6c4ce94acf33b9e162741f15f58ac280c.zip gcc-f749d3c6c4ce94acf33b9e162741f15f58ac280c.tar.gz gcc-f749d3c6c4ce94acf33b9e162741f15f58ac280c.tar.bz2 |
tree-pretty-print.c (print_generic_decl, [...]): Fix comment.
2008-01-27 Bernhard Fischer <aldot@gcc.gnu.org>
* tree-pretty-print.c (print_generic_decl, print_generic_stmt,
print_generic_stmt_indented): Fix comment.
From-SVN: r131885
Diffstat (limited to 'gcc/tree-pretty-print.c')
-rw-r--r-- | gcc/tree-pretty-print.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/tree-pretty-print.c b/gcc/tree-pretty-print.c index d59ec89..4d1f6f4 100644 --- a/gcc/tree-pretty-print.c +++ b/gcc/tree-pretty-print.c @@ -127,7 +127,7 @@ print_generic_decl (FILE *file, tree decl, int flags) } /* Print tree T, and its successors, on file FILE. FLAGS specifies details - to show in the dump. See TDF_* in tree.h. */ + to show in the dump. See TDF_* in tree-pass.h. */ void print_generic_stmt (FILE *file, tree t, int flags) @@ -138,7 +138,7 @@ print_generic_stmt (FILE *file, tree t, int flags) } /* Print tree T, and its successors, on file FILE. FLAGS specifies details - to show in the dump. See TDF_* in tree.h. The output is indented by + to show in the dump. See TDF_* in tree-pass.h. The output is indented by INDENT spaces. */ void @@ -155,7 +155,7 @@ print_generic_stmt_indented (FILE *file, tree t, int flags, int indent) } /* Print a single expression T on file FILE. FLAGS specifies details to show - in the dump. See TDF_* in tree.h. */ + in the dump. See TDF_* in tree-pass.h. */ void print_generic_expr (FILE *file, tree t, int flags) |