Changeset 2246


Ignore:
Timestamp:
Jul 15, 2005, 3:30:58 AM (20 years ago)
Author:
bird
Message:

restored trailing spaces.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/gcc/gcc/tree.c

    • Property cvs2svn:cvs-rev changed from 1.3 to 1.4
    r2245 r2246  
    15251525{
    15261526  enum tree_code code = TREE_CODE (t);
    1527 
     1527 
    15281528  switch (TREE_CODE_CLASS (code))
    15291529    {
     
    15311531    case 't':   return TS_TYPE;
    15321532    case 'b':   return TS_BLOCK;
    1533     case 'r': case '<': case '1': case '2': case 'e': case 's':
     1533    case 'r': case '<': case '1': case '2': case 'e': case 's': 
    15341534      return TS_EXP;
    15351535    default:  /* 'c' and 'x' */
     
    41644164   because a VLA may not appear as a structure member.  However, in
    41654165   GNU C code like:
    4166 
     4166   
    41674167     struct S { int i[f()]; };
    41684168
     
    41764176    return false;
    41774177
    4178   /* If TYPE itself has variable size, it is variably modified.
     4178  /* If TYPE itself has variable size, it is variably modified. 
    41794179
    41804180     We do not yet have a representation of the C99 '[*]' syntax.
    41814181     When a representation is chosen, this function should be modified
    41824182     to test for that case as well.  */
    4183   if (TYPE_SIZE (type)
     4183  if (TYPE_SIZE (type) 
    41844184      && TYPE_SIZE (type) != error_mark_node
    41854185      && TREE_CODE (TYPE_SIZE (type)) != INTEGER_CST)
    41864186    return true;
    41874187
    4188   /* If TYPE is a pointer or reference, it is variably modified if
     4188  /* If TYPE is a pointer or reference, it is variably modified if 
    41894189     the type pointed to is variably modified.  */
    41904190  if ((TREE_CODE (type) == POINTER_TYPE
     
    41924192      && variably_modified_type_p (TREE_TYPE (type)))
    41934193    return true;
    4194 
     4194 
    41954195  /* If TYPE is an array, it is variably modified if the array
    41964196     elements are.  (Note that the VLA case has already been checked
     
    42094209      if (variably_modified_type_p (TREE_TYPE (type)))
    42104210        return true;
    4211       for (parm = TYPE_ARG_TYPES (type);
    4212            parm && parm != void_list_node;
     4211      for (parm = TYPE_ARG_TYPES (type); 
     4212           parm && parm != void_list_node; 
    42134213           parm = TREE_CHAIN (parm))
    42144214        if (variably_modified_type_p (TREE_VALUE (parm)))
     
    44094409  unsigned HOST_WIDE_INT value;
    44104410  char *new_random_seed;
    4411 
     4411 
    44124412  if (flag_random_seed != NULL)
    44134413    return;
     
    44174417 {
    44184418   struct timeval tv;
    4419 
     4419   
    44204420   gettimeofday (&tv, NULL);
    4421    value = (((unsigned HOST_WIDE_INT) tv.tv_usec << 16)
     4421   value = (((unsigned HOST_WIDE_INT) tv.tv_usec << 16) 
    44224422            ^ tv.tv_sec ^ getpid ());
    44234423 }
     
    44484448  default_flag_random_seed ();
    44494449
    4450   /* This isn't a very good hash, but it does guarantee no collisions
     4450  /* This isn't a very good hash, but it does guarantee no collisions 
    44514451     when the random string is generated by the code above and the time
    44524452     delta is small.  */
Note: See TracChangeset for help on using the changeset viewer.