lex.c (make_lang_type): Clear the whole struct lang_type, not only the first multiple of sizeof (int).
* lex.c (make_lang_type): Clear the whole struct lang_type, not only the first multiple of sizeof (int). From-SVN: r23848
This commit is contained in:
parent
84e6233f15
commit
32201ce4ea
@ -1,3 +1,8 @@
|
||||
1998-11-25 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
|
||||
|
||||
* lex.c (make_lang_type): Clear the whole struct lang_type, not
|
||||
only the first multiple of sizeof (int).
|
||||
|
||||
1998-11-24 Jason Merrill <jason@yorick.cygnus.com>
|
||||
|
||||
* decl.c (start_decl): An explicit specialization of a static data
|
||||
|
12
gcc/cp/lex.c
12
gcc/cp/lex.c
@ -4677,9 +4677,8 @@ make_lang_type (code)
|
||||
if (IS_AGGR_TYPE_CODE (code))
|
||||
{
|
||||
struct obstack *obstack = current_obstack;
|
||||
register int i = sizeof (struct lang_type) / sizeof (int);
|
||||
register int *pi;
|
||||
|
||||
struct lang_type *pi;
|
||||
|
||||
SET_IS_AGGR_TYPE (t, 1);
|
||||
|
||||
if (! TREE_PERMANENT (t))
|
||||
@ -4687,11 +4686,10 @@ make_lang_type (code)
|
||||
else
|
||||
my_friendly_assert (obstack == &permanent_obstack, 236);
|
||||
|
||||
pi = (int *) obstack_alloc (obstack, sizeof (struct lang_type));
|
||||
while (i > 0)
|
||||
pi[--i] = 0;
|
||||
pi = (struct lang_type *) obstack_alloc (obstack, sizeof (struct lang_type));
|
||||
bzero ((char *) pi, (int) sizeof (struct lang_type));
|
||||
|
||||
TYPE_LANG_SPECIFIC (t) = (struct lang_type *) pi;
|
||||
TYPE_LANG_SPECIFIC (t) = pi;
|
||||
CLASSTYPE_AS_LIST (t) = build_expr_list (NULL_TREE, t);
|
||||
SET_CLASSTYPE_INTERFACE_UNKNOWN_X (t, interface_unknown);
|
||||
CLASSTYPE_INTERFACE_ONLY (t) = interface_only;
|
||||
|
Loading…
Reference in New Issue
Block a user