diff options
author | Kazu Hirata <kazu@hxi.com> | 2002-01-22 14:33:35 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2002-01-22 14:33:35 +0000 |
commit | cf40364820f180bdb35437db31cdfb21ba0b0142 (patch) | |
tree | 47eb45334226fa8effd3bd4990f8351716b2e206 /gcc/print-tree.c | |
parent | a8765ae7a090cfbc12b41f643938fdd17a3c0dec (diff) | |
download | gcc-cf40364820f180bdb35437db31cdfb21ba0b0142.zip gcc-cf40364820f180bdb35437db31cdfb21ba0b0142.tar.gz gcc-cf40364820f180bdb35437db31cdfb21ba0b0142.tar.bz2 |
predict.c: Fix formatting.
* predict.c: Fix formatting.
* print-tree.c: Likewise.
* protoize.c: Likewise.
* real.h: Likewise.
* rtl.h: Likewise.
* sbitmap.h: Likewise.
* scan.c: Likewise.
* sched-deps.c: Likewise.
* sched-vis.c: Likewise.
* sdbout.c: Likewise.
* sibcall.c: Likewise.
* ssa.c: Likewise.
* ssa-ccp.c: Likewise.
* ssa-dce.c: Likewise.
* stmt.c: Likewise.
* stor-layout.c: Likewise.
* system.h: Likewise.
From-SVN: r49074
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 669c03e..594cf0b 100644 --- a/gcc/print-tree.c +++ b/gcc/print-tree.c @@ -1,6 +1,6 @@ /* Prints out tree in human readable form - GNU C-compiler Copyright (C) 1990, 1991, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, - 2001 Free Software Foundation, Inc. + 2001, 2002 Free Software Foundation, Inc. This file is part of GCC. @@ -387,7 +387,7 @@ print_node (file, prefix, node, indent) if (DECL_LANG_FLAG_7 (node)) fputs (" decl_7", file); - fprintf (file, " %s", GET_MODE_NAME(mode)); + fprintf (file, " %s", GET_MODE_NAME (mode)); fprintf (file, " file %s line %d", DECL_SOURCE_FILE (node), DECL_SOURCE_LINE (node)); @@ -531,7 +531,7 @@ print_node (file, prefix, node, indent) fputs (" type_6", file); mode = TYPE_MODE (node); - fprintf (file, " %s", GET_MODE_NAME(mode)); + fprintf (file, " %s", GET_MODE_NAME (mode)); print_node (file, "size", TYPE_SIZE (node), indent + 4); print_node (file, "unit size", TYPE_SIZE_UNIT (node), indent + 4); |