Changeset 640 for trunk/src/gcc


Ignore:
Timestamp:
Aug 19, 2003, 2:12:33 AM (22 years ago)
Author:
bird
Message:

Variable declarations.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/gcc/gcc/config/i386/emx.c

    • Property cvs2svn:cvs-rev changed from 1.18 to 1.19
    r639 r640  
    4040
    4141/** @todo remove debug code */
    42 /*#define BIRD_DEBUG - DO NOT COMMIT WITH THIS DEFINED!!! */
     42#define BIRD_DEBUG/* - DO NOT COMMIT WITH THIS DEFINED!!! */
     43
    4344#ifdef BIRD_DEBUG
    4445static const char *code(tree node)
     
    5354            case FIELD_DECL:    return "FIELD_DECL";
    5455            case TYPE_DECL:     return "TYPE_DECL";
     56
     57
     58
     59
    5560            case POINTER_TYPE:  return "POINTER_TYPE";
    56             case VOID_TYPE:  return "VOID_TYPE";
     61            case VOID_TYPE:  return "VOID_TYPE";
    5762            case INTEGER_TYPE:  return "INTEGER_TYPE";
    58             case CHAR_TYPE:  return "CHAR_TYPE";
    59             case SET_TYPE:  return "SET_TYPE";
    60             case ARRAY_TYPE:  return "ARRAY_TYPE";
    61             case RECORD_TYPE:  return "RECORD_TYPE";
     63            case CHAR_TYPE:  return "CHAR_TYPE";
     64            case SET_TYPE:  return "SET_TYPE";
     65            case ARRAY_TYPE:  return "ARRAY_TYPE";
     66            case RECORD_TYPE:  return "RECORD_TYPE";
    6267            case QUAL_UNION_TYPE:  return "QUAL_UNION_TYPE";
    63             case UNION_TYPE:  return "UNION_TYPE";
     68            case UNION_TYPE:  return "UNION_TYPE";
    6469            default:
    6570                break;
     
    184189         declarations involving function types needs to get the parameter
    185190         passing right. */
     191
     192
     193
     194
     195
     196
    186197      case FIELD_DECL:
    187       /* Struct, union or class member declaration. Same handling as
    188          type declarations. */
     198      /* Struct, union or class member declaration. Same handling as
     199         type declarations. */
    189200      case TYPE_DECL:
    190201        /* If this is a type declaration with our attribute, we allow it
Note: See TracChangeset for help on using the changeset viewer.