mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-10-13 02:45:02 +08:00
* c-lang.c (_initialize_c_language): Name changed from
_initialize_c_exp. * m2-lang.c (_initialize_m2_language): Name changed from _initialize_m2_exp. * m2-lang.c (_initialize_m2_language): Change malloc to xmalloc since it is no longer inside m2-exp.y, where it was remapped by Makefile. **** start-sanitize-chill **** * ch-lang.c (_initialize_chill_language): Name changed from _initialize_chill_exp. **** end-sanitize-chill ****
This commit is contained in:
@ -418,7 +418,7 @@ const struct language_defn m2_language_defn = {
|
||||
/* Initialization for Modula-2 */
|
||||
|
||||
void
|
||||
_initialize_m2_exp ()
|
||||
_initialize_m2_language ()
|
||||
{
|
||||
/* Modula-2 "pervasive" types. NOTE: these can be redefined!!! */
|
||||
builtin_type_m2_int =
|
||||
@ -444,12 +444,12 @@ _initialize_m2_exp ()
|
||||
|
||||
TYPE_NFIELDS(builtin_type_m2_bool) = 2;
|
||||
TYPE_FIELDS(builtin_type_m2_bool) =
|
||||
(struct field *) malloc (sizeof (struct field) * 2);
|
||||
(struct field *) xmalloc (sizeof (struct field) * 2);
|
||||
TYPE_FIELD_BITPOS(builtin_type_m2_bool,0) = 0;
|
||||
TYPE_FIELD_NAME(builtin_type_m2_bool,0) = (char *)malloc(6);
|
||||
TYPE_FIELD_NAME(builtin_type_m2_bool,0) = (char *)xmalloc(6);
|
||||
strcpy(TYPE_FIELD_NAME(builtin_type_m2_bool,0),"FALSE");
|
||||
TYPE_FIELD_BITPOS(builtin_type_m2_bool,1) = 1;
|
||||
TYPE_FIELD_NAME(builtin_type_m2_bool,1) = (char *)malloc(5);
|
||||
TYPE_FIELD_NAME(builtin_type_m2_bool,1) = (char *)xmalloc(5);
|
||||
strcpy(TYPE_FIELD_NAME(builtin_type_m2_bool,1),"TRUE");
|
||||
|
||||
add_language (&m2_language_defn);
|
||||
|
Reference in New Issue
Block a user