From af592f67839fa19d582c506760ab477b9c287df6 Mon Sep 17 00:00:00 2001 From: tromey Date: Mon, 4 Jun 2007 22:13:40 +0000 Subject: [PATCH] * c-common.c (c_common_get_alias_set): Fix indentation. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@125321 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/ChangeLog | 4 ++++ gcc/c-common.c | 16 ++++++++-------- 2 files changed, 12 insertions(+), 8 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d9506d85b18..e4c31ffd03d 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2007-06-04 Tom Tromey + + * c-common.c (c_common_get_alias_set): Fix indentation. + 2007-06-04 Ian Lance Taylor * tree-vrp.c (adjust_range_with_scev): When loop is not expected diff --git a/gcc/c-common.c b/gcc/c-common.c index 41547e168e4..b9032188c5a 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 -- 2.11.0