Changeset 640
- Timestamp:
- Aug 19, 2003, 2:12:33 AM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gcc/gcc/config/i386/emx.c
-
Property cvs2svn:cvs-rev
changed from
1.18
to1.19
r639 r640 40 40 41 41 /** @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 43 44 #ifdef BIRD_DEBUG 44 45 static const char *code(tree node) … … 53 54 case FIELD_DECL: return "FIELD_DECL"; 54 55 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"; 55 60 case POINTER_TYPE: return "POINTER_TYPE"; 56 case VOID_TYPE: return "VOID_TYPE";61 case VOID_TYPE: return "VOID_TYPE"; 57 62 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"; 62 67 case QUAL_UNION_TYPE: return "QUAL_UNION_TYPE"; 63 case UNION_TYPE: return "UNION_TYPE";68 case UNION_TYPE: return "UNION_TYPE"; 64 69 default: 65 70 break; … … 184 189 declarations involving function types needs to get the parameter 185 190 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. */ 186 197 case FIELD_DECL: 187 /* Struct, union or class member declaration. Same handling as188 type declarations. */198 /* Struct, union or class member declaration. Same handling as 199 type declarations. */ 189 200 case TYPE_DECL: 190 201 /* If this is a type declaration with our attribute, we allow it -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.