diff --git a/gas/ChangeLog b/gas/ChangeLog index 89b08dd1ec8..1156fe249ff 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,9 +1,13 @@ +2010-02-11 Sterling Augustine + + * config/tc-xtensa.c (istack_init): Don't call memset. + 2010-02-11 Sterling Augustine * config/tc-xtensa.c (cache_literal_section): Handle prefixes as well as suffixes. -2010-02-10 Sterling Augustine +2010-02-11 Sterling Augustine * config/tc-xtensa.c (xtensa_find_unaligned_loops): Rewrite. diff --git a/gas/config/tc-xtensa.c b/gas/config/tc-xtensa.c index f8a81128bc3..ede3cb9bee1 100644 --- a/gas/config/tc-xtensa.c +++ b/gas/config/tc-xtensa.c @@ -11203,7 +11203,6 @@ xg_get_single_slot (xtensa_opcode opcode) void istack_init (IStack *stack) { - memset (stack, 0, sizeof (IStack)); stack->ninsn = 0; }