mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-21 02:24:17 +08:00
* read.c (do_align): Don't define label just_record_alignment
unless it might be used.
This commit is contained in:
@ -254,6 +254,7 @@ static const pseudo_typeS potable[] =
|
|||||||
/* val */
|
/* val */
|
||||||
{"xstabs", s_xstab, 's'},
|
{"xstabs", s_xstab, 's'},
|
||||||
{"word", cons, 2},
|
{"word", cons, 2},
|
||||||
|
{"zero", s_space, 0},
|
||||||
{NULL} /* end sentinel */
|
{NULL} /* end sentinel */
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -738,7 +739,10 @@ do_align (n, fill)
|
|||||||
if (n && !need_pass_2)
|
if (n && !need_pass_2)
|
||||||
frag_align (n, *fill);
|
frag_align (n, *fill);
|
||||||
|
|
||||||
|
#ifdef md_do_align
|
||||||
just_record_alignment:
|
just_record_alignment:
|
||||||
|
#endif
|
||||||
|
|
||||||
record_alignment (now_seg, n);
|
record_alignment (now_seg, n);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user