m32c: drop .bss override
It doesn't look to be a good idea to override the custom handler that ELF has; afaict doing so broke .previous.
This commit is contained in:
parent
27a8c60336
commit
781d0ac990
@ -100,8 +100,6 @@ set_isa (enum isa_attr isa_num)
|
||||
cgen_bitset_set (& m32c_isa, isa_num);
|
||||
}
|
||||
|
||||
static void s_bss (int);
|
||||
|
||||
int
|
||||
md_parse_option (int c, const char * arg ATTRIBUTE_UNUSED)
|
||||
{
|
||||
@ -141,20 +139,9 @@ md_show_usage (FILE * stream)
|
||||
fprintf (stream, _(" M32C specific command line options:\n"));
|
||||
}
|
||||
|
||||
static void
|
||||
s_bss (int ignore ATTRIBUTE_UNUSED)
|
||||
{
|
||||
int temp;
|
||||
|
||||
temp = get_absolute_expression ();
|
||||
subseg_set (bss_section, (subsegT) temp);
|
||||
demand_empty_rest_of_line ();
|
||||
}
|
||||
|
||||
/* The target specific pseudo-ops which we support. */
|
||||
const pseudo_typeS md_pseudo_table[] =
|
||||
{
|
||||
{ "bss", s_bss, 0},
|
||||
{ "3byte", cons, 3 },
|
||||
{ "word", cons, 4 },
|
||||
{ NULL, NULL, 0 }
|
||||
|
Loading…
x
Reference in New Issue
Block a user