PR gas/619

* read.c (s_comm_internal): Don't zero end of name until size
	expression has been parsed.
This commit is contained in:
Alan Modra 2004-12-29 10:21:58 +00:00
parent 2af59babed
commit a207757ebf
2 changed files with 7 additions and 3 deletions

View file

@ -1,3 +1,9 @@
2004-12-29 Alan Modra <amodra@bigpond.net.au>
PR gas/619
* read.c (s_comm_internal): Don't zero end of name until size
expression has been parsed.
2004-12-25 Marek Michalkiewicz <marekm@amelek.gda.pl>
* config/tc-avr.c (mcu_types): Move attiny{13,2313} from avr4 to avr2.

View file

@ -1377,7 +1377,6 @@ s_comm_internal (int param,
if (*input_line_pointer == ',')
input_line_pointer++;
*p = 0;
temp = get_absolute_expr (&exp);
size = temp;
#ifdef BFD_ASSEMBLER
@ -1386,18 +1385,17 @@ s_comm_internal (int param,
if (exp.X_op == O_absent)
{
as_bad (_("missing size expression"));
*p = c;
ignore_rest_of_line ();
goto out;
}
else if (temp != size || !exp.X_unsigned)
{
as_warn (_("size (%ld) out of range, ignored"), (long) temp);
*p = c;
ignore_rest_of_line ();
goto out;
}
*p = 0;
symbolP = symbol_find_or_make (name);
if (S_IS_DEFINED (symbolP) && !S_IS_COMMON (symbolP))
{