aboutsummaryrefslogtreecommitdiff
path: root/gcc/c-common.c
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2007-06-04 22:13:40 +0000
committerTom Tromey <tromey@gcc.gnu.org>2007-06-04 22:13:40 +0000
commit762f7d9d8aa388aba0272677ab170741fe218260 (patch)
tree14833a27cd117cf978344a78b8ef17555194b5cf /gcc/c-common.c
parent9a46cc164cb00570e964fe608f216e872eaa9301 (diff)
downloadgcc-762f7d9d8aa388aba0272677ab170741fe218260.zip
gcc-762f7d9d8aa388aba0272677ab170741fe218260.tar.gz
gcc-762f7d9d8aa388aba0272677ab170741fe218260.tar.bz2
* c-common.c (c_common_get_alias_set): Fix indentation.
From-SVN: r125321
Diffstat (limited to 'gcc/c-common.c')
-rw-r--r--gcc/c-common.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/gcc/c-common.c b/gcc/c-common.c
index 41547e1..b903218 100644
--- a/gcc/c-common.c
+++ b/gcc/c-common.c
@@ -3165,16 +3165,16 @@ c_common_get_alias_set (tree t)
tree t2;
/* Find bottom type under any nested POINTERs. */
for (t2 = TREE_TYPE (t);
- TREE_CODE (t2) == POINTER_TYPE;
- t2 = TREE_TYPE (t2))
- ;
+ TREE_CODE (t2) == POINTER_TYPE;
+ t2 = TREE_TYPE (t2))
+ ;
if (TREE_CODE (t2) != RECORD_TYPE
- && TREE_CODE (t2) != ENUMERAL_TYPE
- && TREE_CODE (t2) != QUAL_UNION_TYPE
- && TREE_CODE (t2) != UNION_TYPE)
- return -1;
+ && TREE_CODE (t2) != ENUMERAL_TYPE
+ && TREE_CODE (t2) != QUAL_UNION_TYPE
+ && TREE_CODE (t2) != UNION_TYPE)
+ return -1;
if (TYPE_SIZE (t2) == 0)
- return -1;
+ return -1;
}
/* These are the only cases that need special handling. */
if (TREE_CODE (t) != RECORD_TYPE