diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2002-05-20 18:06:55 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2002-05-20 18:06:55 +0000 |
commit | 6a4d67604e3bf62a35668b98cf87465d5be73ec3 (patch) | |
tree | 6f48ee558ae32b2a271ec40182fded8214a3342f /gcc/print-tree.c | |
parent | fe1cc883cd4a3c6095219d60a72213bbd4ac5b81 (diff) | |
download | gcc-6a4d67604e3bf62a35668b98cf87465d5be73ec3.zip gcc-6a4d67604e3bf62a35668b98cf87465d5be73ec3.tar.gz gcc-6a4d67604e3bf62a35668b98cf87465d5be73ec3.tar.bz2 |
params.c: Fix formatting.
* params.c: Fix formatting.
* params.h: Likewise.
* predict.c: Likewise.
* prefix.c: Likewise.
* print-rtl.c: Likewise.
* print-tree.c: Likewise.
* profile.c: Likewise.
From-SVN: r53670
Diffstat (limited to 'gcc/print-tree.c')
-rw-r--r-- | gcc/print-tree.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/print-tree.c b/gcc/print-tree.c index f5c7d88..40ee816 100644 --- a/gcc/print-tree.c +++ b/gcc/print-tree.c @@ -384,7 +384,7 @@ print_node (file, prefix, node, indent) print_node (file, "size", DECL_SIZE (node), indent + 4); print_node (file, "unit size", DECL_SIZE_UNIT (node), indent + 4); - + if (TREE_CODE (node) != FUNCTION_DECL || DECL_INLINE (node) || DECL_BUILT_IN (node)) indent_to (file, indent + 3); @@ -415,7 +415,7 @@ print_node (file, prefix, node, indent) if (DECL_POINTER_ALIAS_SET_KNOWN_P (node)) { fprintf (file, " alias set "); - fprintf (file, HOST_WIDE_INT_PRINT_DEC, + fprintf (file, HOST_WIDE_INT_PRINT_DEC, DECL_POINTER_ALIAS_SET (node)); } @@ -633,7 +633,7 @@ print_node (file, prefix, node, indent) if (TREE_CODE (node) == EXPR_WITH_FILE_LOCATION) { indent_to (file, indent+4); - fprintf (file, "%s:%d:%d", + fprintf (file, "%s:%d:%d", (EXPR_WFL_FILENAME_NODE (node ) ? EXPR_WFL_FILENAME (node) : "(no file info)"), EXPR_WFL_LINENO (node), EXPR_WFL_COLNO (node)); |