Changeset 640


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            case VAR_DECL:      return "VAR_DECL";
     57            case PARM_DECL:     return "PARM_DECL";
     58            case RESULT_DECL:   return "RESULT_DECL";
     59            case CONST_DECL:    return "CONST_DECL";
    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      /*case CONST_DECL: ?? */
     192        /* Is this possible - make testcase. */
     193      /*case PARM_DECL: ?? */
     194        /* Is this possible - make testcase. */
     195      case VAR_DECL:
     196        /* Function pointer variable. */
    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.