]> gcc.gnu.org Git - gcc.git/commitdiff
* c-common.c (c_common_get_alias_set): Fix indentation.
authorTom Tromey <tromey@redhat.com>
Mon, 4 Jun 2007 22:13:40 +0000 (22:13 +0000)
committerTom Tromey <tromey@gcc.gnu.org>
Mon, 4 Jun 2007 22:13:40 +0000 (22:13 +0000)
From-SVN: r125321

gcc/ChangeLog
gcc/c-common.c

index d9506d85b184dacc54f892f152badf4d894a84fb..e4c31ffd03de5abc1e5c145f808ab62234148af1 100644 (file)
@@ -1,3 +1,7 @@
+2007-06-04  Tom Tromey  <tromey@redhat.com>
+
+       * c-common.c (c_common_get_alias_set): Fix indentation.
+
 2007-06-04  Ian Lance Taylor  <iant@google.com>
 
        * tree-vrp.c (adjust_range_with_scev): When loop is not expected
index 41547e168e44c06f3829eb2bdf40d71cd5d063b6..b9032188c5a742b538e813b18b90aebe4b5d5f63 100644 (file)
@@ -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
This page took 0.092801 seconds and 5 git commands to generate.