aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@hxi.com>2002-01-10 20:12:57 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2002-01-10 20:12:57 +0000
commita01da83b2291abdccd8abe66eff604c50e3c71f0 (patch)
tree6a84e83a4ac5cdeb8d3b26f3d9d3dd04135fad57 /gcc/tree.c
parent9f85bca76fd08f9bab2d9b0d4535ce5d90acfaea (diff)
downloadgcc-a01da83b2291abdccd8abe66eff604c50e3c71f0.zip
gcc-a01da83b2291abdccd8abe66eff604c50e3c71f0.tar.gz
gcc-a01da83b2291abdccd8abe66eff604c50e3c71f0.tar.bz2
toplev.c: Fix formatting.
* toplev.c: Fix formatting. * tree.c: Likewise. * tree-dump.c: Likewise. * unroll.c: Likewise. * unwind-dw2.c: Likewise. * unwind-dw2-fde.c: Likewise. * unwind-dw2-fde-glibc.c: Likewise. * unwind-sjlj.c: Likewise. From-SVN: r48749
Diffstat (limited to 'gcc/tree.c')
-rw-r--r--gcc/tree.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/tree.c b/gcc/tree.c
index a267fd7..61252e7 100644
--- a/gcc/tree.c
+++ b/gcc/tree.c
@@ -1,6 +1,6 @@
/* Language-independent node constructors for parse phase of GNU compiler.
Copyright (C) 1987, 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
- 1999, 2000, 2001 Free Software Foundation, Inc.
+ 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
This file is part of GCC.
@@ -2911,7 +2911,7 @@ merge_dllimport_decl_attributes (old, new)
if (delete_dllimport_p)
{
- tree prev,t;
+ tree prev, t;
/* Scan the list for dllimport and delete it. */
for (prev = NULL_TREE, t = a; t; prev = t, t = TREE_CHAIN (t))
@@ -3270,7 +3270,7 @@ attribute_list_contained (l1, l2)
/* Maybe the lists are equal. */
if (t1 == 0 && t2 == 0)
- return 1;
+ return 1;
for (; t2 != 0; t2 = TREE_CHAIN (t2))
{
@@ -3708,7 +3708,7 @@ build_reference_type (to_type)
tree
build_type_no_quals (t)
- tree t;
+ tree t;
{
switch (TREE_CODE (t))
{
@@ -3789,7 +3789,7 @@ build_range_type (type, lowval, highval)
of just highval (maxval). */
tree
-build_index_2_type (lowval,highval)
+build_index_2_type (lowval, highval)
tree lowval, highval;
{
return build_range_type (sizetype, lowval, highval);
@@ -3869,7 +3869,7 @@ build_array_type (elt_type, index_type)
tree
get_inner_array_type (array)
- tree array;
+ tree array;
{
tree type = TREE_TYPE (array);