diff options
author | Tom Tromey <tromey@redhat.com> | 2005-03-30 21:34:41 +0000 |
---|---|---|
committer | Tom Tromey <tromey@gcc.gnu.org> | 2005-03-30 21:34:41 +0000 |
commit | 5662a50dd8c7116df0ad182ce6792dfeeb0f72aa (patch) | |
tree | a32675b4b0676ecaf92e279e2a53b3c5bc54c1b2 /gcc | |
parent | b131a44e3d148ee2ff71280e3e2542b87a40d2bd (diff) | |
download | gcc-5662a50dd8c7116df0ad182ce6792dfeeb0f72aa.zip gcc-5662a50dd8c7116df0ad182ce6792dfeeb0f72aa.tar.gz gcc-5662a50dd8c7116df0ad182ce6792dfeeb0f72aa.tar.bz2 |
tree.def (FILE_TYPE): Removed.
gcc:
* tree.def (FILE_TYPE): Removed.
* typeclass.h (enum type_class): Removed file_type_class.
* dwarf2out.c (is_base_type): Updated.
(gen_type_die): Likewise.
* dbxout.c (dbxout_type): Updated.
* builtins.c (type_to_class): Updated.
* tree.c (type_contains_placeholder_1): Updated.
* config/sparc/sparc.c (sparc_type_code): Updated.
* config/ia64/ia64.c (hfa_element_mode): Updated.
* expr.c (count_type_elements): Updated.
* stor-layout.c (layout_type): Updated.
* tree-inline.c (remap_type): Updated.
* tree-pretty-print.c (dump_generic_node): Updated.
gcc/java:
* decl.c (gnat_substitute_in_type): Don't handle FILE_TYPE.
From-SVN: r97282
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 16 | ||||
-rw-r--r-- | gcc/ada/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/ada/decl.c | 1 | ||||
-rw-r--r-- | gcc/builtins.c | 1 | ||||
-rw-r--r-- | gcc/config/ia64/ia64.c | 2 | ||||
-rw-r--r-- | gcc/config/sparc/sparc.c | 1 | ||||
-rw-r--r-- | gcc/dbxout.c | 5 | ||||
-rw-r--r-- | gcc/dwarf2out.c | 7 | ||||
-rw-r--r-- | gcc/expr.c | 1 | ||||
-rw-r--r-- | gcc/stor-layout.c | 8 | ||||
-rw-r--r-- | gcc/tree-inline.c | 1 | ||||
-rw-r--r-- | gcc/tree-pretty-print.c | 6 | ||||
-rw-r--r-- | gcc/tree.c | 1 | ||||
-rw-r--r-- | gcc/tree.def | 3 | ||||
-rw-r--r-- | gcc/typeclass.h | 4 |
15 files changed, 24 insertions, 37 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 384e48e..2adae16 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,19 @@ +2005-03-30 Tom Tromey <tromey@redhat.com> + + * tree.def (FILE_TYPE): Removed. + * typeclass.h (enum type_class): Removed file_type_class. + * dwarf2out.c (is_base_type): Updated. + (gen_type_die): Likewise. + * dbxout.c (dbxout_type): Updated. + * builtins.c (type_to_class): Updated. + * tree.c (type_contains_placeholder_1): Updated. + * config/sparc/sparc.c (sparc_type_code): Updated. + * config/ia64/ia64.c (hfa_element_mode): Updated. + * expr.c (count_type_elements): Updated. + * stor-layout.c (layout_type): Updated. + * tree-inline.c (remap_type): Updated. + * tree-pretty-print.c (dump_generic_node): Updated. + 2005-03-30 Fariborz Jahanian <fjahanian@apple.com> * builtins.c (expand_builtin_powi): Fix mode of diff --git a/gcc/ada/ChangeLog b/gcc/ada/ChangeLog index b36fc5b..035d831 100644 --- a/gcc/ada/ChangeLog +++ b/gcc/ada/ChangeLog @@ -1,3 +1,7 @@ +2005-03-30 Tom Tromey <tromey@redhat.com> + + * decl.c (gnat_substitute_in_type): Don't handle FILE_TYPE. + 2005-03-30 Aaron W. LaFramboise <aaronavay62@aaronwl.com> * adaint.c (_gnat_set_close_on_exec): Mark parameters unused. diff --git a/gcc/ada/decl.c b/gcc/ada/decl.c index 9d2e8fe..5f53e19 100644 --- a/gcc/ada/decl.c +++ b/gcc/ada/decl.c @@ -6402,7 +6402,6 @@ gnat_substitute_in_type (tree t, tree f, tree r) case OFFSET_TYPE: case METHOD_TYPE: - case FILE_TYPE: case FUNCTION_TYPE: case LANG_TYPE: /* Don't know how to do these yet. */ diff --git a/gcc/builtins.c b/gcc/builtins.c index fb044de..56bdc87 100644 --- a/gcc/builtins.c +++ b/gcc/builtins.c @@ -1478,7 +1478,6 @@ type_to_class (tree type) case QUAL_UNION_TYPE: return union_type_class; case ARRAY_TYPE: return (TYPE_STRING_FLAG (type) ? string_type_class : array_type_class); - case FILE_TYPE: return file_type_class; case LANG_TYPE: return lang_type_class; default: return no_type_class; } diff --git a/gcc/config/ia64/ia64.c b/gcc/config/ia64/ia64.c index e18b348..3d15f40 100644 --- a/gcc/config/ia64/ia64.c +++ b/gcc/config/ia64/ia64.c @@ -3348,7 +3348,7 @@ hfa_element_mode (tree type, bool nested) case VOID_TYPE: case INTEGER_TYPE: case ENUMERAL_TYPE: case BOOLEAN_TYPE: case CHAR_TYPE: case POINTER_TYPE: case OFFSET_TYPE: case REFERENCE_TYPE: case METHOD_TYPE: - case FILE_TYPE: case LANG_TYPE: case FUNCTION_TYPE: + case LANG_TYPE: case FUNCTION_TYPE: return VOIDmode; /* Fortran complex types are supposed to be HFAs, so we need to handle diff --git a/gcc/config/sparc/sparc.c b/gcc/config/sparc/sparc.c index 3827d7b..6823915 100644 --- a/gcc/config/sparc/sparc.c +++ b/gcc/config/sparc/sparc.c @@ -7727,7 +7727,6 @@ sparc_type_code (register tree type) case VECTOR_TYPE: case CHAR_TYPE: /* GNU Pascal CHAR type. Not used in C. */ case BOOLEAN_TYPE: /* GNU Fortran BOOLEAN type. */ - case FILE_TYPE: /* GNU Pascal FILE type. */ case LANG_TYPE: /* ? */ return qualifiers; diff --git a/gcc/dbxout.c b/gcc/dbxout.c index 271cc19..92538b8 100644 --- a/gcc/dbxout.c +++ b/gcc/dbxout.c @@ -1932,11 +1932,6 @@ dbxout_type (tree type, int full) stabstr_S ("eFalse:0,True:1,;"); break; - case FILE_TYPE: - stabstr_C ('d'); - dbxout_type (TREE_TYPE (type), 0); - break; - case COMPLEX_TYPE: /* Differs from the REAL_TYPE by its new data type number. R3 is NF_COMPLEX. We don't try to use any of the other NF_* diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c index 24e573b..6335662 100644 --- a/gcc/dwarf2out.c +++ b/gcc/dwarf2out.c @@ -8016,7 +8016,6 @@ is_base_type (tree type) case METHOD_TYPE: case POINTER_TYPE: case REFERENCE_TYPE: - case FILE_TYPE: case OFFSET_TYPE: case LANG_TYPE: case VECTOR_TYPE: @@ -12110,12 +12109,6 @@ gen_type_die (tree type, dw_die_ref context_die) gen_ptr_to_mbr_type_die (type, context_die); break; - case FILE_TYPE: - gen_type_die (TREE_TYPE (type), context_die); - /* No way to represent these in Dwarf yet! */ - gcc_unreachable (); - break; - case FUNCTION_TYPE: /* Force out return type (in case it wasn't forced out already). */ gen_type_die (TREE_TYPE (type), context_die); @@ -4522,7 +4522,6 @@ count_type_elements (tree type) case VOID_TYPE: case METHOD_TYPE: - case FILE_TYPE: case FUNCTION_TYPE: case LANG_TYPE: default: diff --git a/gcc/stor-layout.c b/gcc/stor-layout.c index 2814622..25420e0 100644 --- a/gcc/stor-layout.c +++ b/gcc/stor-layout.c @@ -1759,14 +1759,6 @@ layout_type (tree type) } break; - case FILE_TYPE: - /* The size may vary in different languages, so the language front end - should fill in the size. */ - TYPE_ALIGN (type) = BIGGEST_ALIGNMENT; - TYPE_USER_ALIGN (type) = 0; - TYPE_MODE (type) = BLKmode; - break; - default: gcc_unreachable (); } diff --git a/gcc/tree-inline.c b/gcc/tree-inline.c index 0b38f08..88bef203 100644 --- a/gcc/tree-inline.c +++ b/gcc/tree-inline.c @@ -321,7 +321,6 @@ remap_type (tree type, inline_data *id) walk_tree (&TYPE_FIELDS (new), copy_body_r, id, NULL); break; - case FILE_TYPE: case OFFSET_TYPE: default: /* Shouldn't have been thought variable sized. */ diff --git a/gcc/tree-pretty-print.c b/gcc/tree-pretty-print.c index 6c1eed8..743e159 100644 --- a/gcc/tree-pretty-print.c +++ b/gcc/tree-pretty-print.c @@ -1,5 +1,5 @@ /* Pretty formatting of GENERIC trees in C syntax. - Copyright (C) 2001, 2002, 2003, 2004 Free Software Foundation, Inc. + Copyright (C) 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. Adapted from c-pretty-print.c by Diego Novillo <dnovillo@redhat.com> This file is part of GCC. @@ -441,10 +441,6 @@ dump_generic_node (pretty_printer *buffer, tree node, int spc, int flags, pp_string (buffer, "::"); break; - case FILE_TYPE: - NIY; - break; - case ARRAY_TYPE: { tree tmp; @@ -1908,7 +1908,6 @@ type_contains_placeholder_1 (tree type) case OFFSET_TYPE: case REFERENCE_TYPE: case METHOD_TYPE: - case FILE_TYPE: case FUNCTION_TYPE: case VECTOR_TYPE: return false; diff --git a/gcc/tree.def b/gcc/tree.def index bcb3884..08e2806 100644 --- a/gcc/tree.def +++ b/gcc/tree.def @@ -254,9 +254,6 @@ DEFTREECODE (FUNCTION_TYPE, "function_type", tcc_type, 0) includes the hidden argument for "self". */ DEFTREECODE (METHOD_TYPE, "method_type", tcc_type, 0) -/* Used for Pascal; details not determined right now. */ -DEFTREECODE (FILE_TYPE, "file_type", tcc_type, 0) - /* This is a language-specific kind of type. Its meaning is defined by the language front end. layout_type does not know how to lay this out, diff --git a/gcc/typeclass.h b/gcc/typeclass.h index 5f36214..a4e1570 100644 --- a/gcc/typeclass.h +++ b/gcc/typeclass.h @@ -1,5 +1,5 @@ /* Type class enum - Copyright (C) 2004 Free Software Foundation, Inc. + Copyright (C) 2004, 2005 Free Software Foundation, Inc. This file is part of GCC. @@ -39,7 +39,7 @@ enum type_class real_type_class, complex_type_class, function_type_class, method_type_class, record_type_class, union_type_class, - array_type_class, string_type_class, file_type_class, + array_type_class, string_type_class, lang_type_class }; |