]> gcc.gnu.org Git - gcc.git/blobdiff - gcc/c-typeck.c
bitmap.c (bitmap_clear): Ensure `inline' is at the beginning of the declaration.
[gcc.git] / gcc / c-typeck.c
index 135ca9b09c29866cee75d3ee34a6de0ac270c162..5bf265ac2083e4ea87b7d1048038d50103cd973c 100644 (file)
@@ -547,7 +547,7 @@ comp_target_types (ttl, ttr)
   int val;
 
   /* Give maybe_objc_comptypes a crack at letting these types through.  */
-  if (val = maybe_objc_comptypes (ttl, ttr, 1) >= 0)
+  if ((val = maybe_objc_comptypes (ttl, ttr, 1)) >= 0)
     return val;
 
   val = comptypes (TYPE_MAIN_VARIANT (TREE_TYPE (ttl)),
@@ -4700,7 +4700,7 @@ print_spelling (buffer)
       {
        if (p->kind == SPELLING_MEMBER)
          *d++ = '.';
-       for (s = p->u.s; *d = *s++; d++)
+       for (s = p->u.s; (*d = *s++); d++)
          ;
       }
   *d++ = '\0';
@@ -5106,9 +5106,6 @@ static int constructor_depth;
 /* 0 if implicitly pushing constructor levels is allowed.  */
 int constructor_no_implicit = 0; /* 0 for C; 1 for some other languages.  */
 
-/* 1 if this constructor level was entered implicitly.  */
-static int constructor_implicit;
-
 static int require_constant_value;
 static int require_constant_elements;
 
@@ -5127,9 +5124,6 @@ static char *constructor_asmspec;
 /* Nonzero if this is an initializer for a top-level decl.  */
 static int constructor_top_level;
 
-/* When we finish reading a constructor expression
-   (constructor_decl is 0), the CONSTRUCTOR goes here.  */
-static tree constructor_result;
 \f
 /* This stack has a level for each implicit or explicit level of
    structuring in the initializer, including the outermost one.  It
This page took 0.033068 seconds and 5 git commands to generate.