2004-07-28 Andrew Cagney <cagney@gnu.org>

* scm-lang.c (c_builtin_types): Delete extern declaration.
	(scm_language_defn): Replace
	string_char_type and primitive_type_vector with
	la_language_arch_info.
	* jv-lang.c (java_language_defn): Replace
	string_char_type and primitive_type_vector with
	la_language_arch_info.
	* config/i386/i386sco4.mh (NATDEPFILES): Remove reference to
	c_builtin_types in comment.
	* c-lang.h (struct language_arch_info): Declare opaque.
	(c_language_arch_info): Declare.
	(c_builtin_types): Delete declaration.
	* c-lang.c (c_language_arch_info): Set string_char_type to
	builtin_char, not builtin_true_char.  Make global.
	(c_builtin_types): Delete array.
	(asm_language_defn, minimal_language_defn): Replace
	string_char_type and primitive_type_vector with
	la_language_arch_info.
This commit is contained in:
Andrew Cagney
2004-07-28 15:18:08 +00:00
parent 685419e2ae
commit e9667a656b
6 changed files with 39 additions and 40 deletions

View File

@ -1084,7 +1084,7 @@ const struct language_defn java_language_defn =
{
"java", /* Language name */
language_java,
c_builtin_types,
NULL,
range_check_off,
type_check_off,
case_sensitive_on,
@ -1112,9 +1112,9 @@ const struct language_defn java_language_defn =
java_op_print_tab, /* expression operators for printing */
0, /* not c-style arrays */
0, /* String lower bound */
&builtin_type_char, /* Type of string elements */
NULL,
default_word_break_characters,
NULL, /* FIXME: la_language_arch_info. */
c_language_arch_info,
LANG_MAGIC
};