mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-25 21:41:47 +08:00
* config/tc-hppa.c (pa_comm): Delete incorrect check for symbol
redefinition.
This commit is contained in:
@ -1,5 +1,8 @@
|
|||||||
Sat Oct 30 14:26:20 1993 Jeffrey A. Law (law@snake.cs.utah.edu)
|
Sat Oct 30 14:26:20 1993 Jeffrey A. Law (law@snake.cs.utah.edu)
|
||||||
|
|
||||||
|
* config/tc-hppa.c (pa_comm): Delete incorrect check for symbol
|
||||||
|
redefinition.
|
||||||
|
|
||||||
* config/obj-som.[ch]: New files for SOM support. Note SOM
|
* config/obj-som.[ch]: New files for SOM support. Note SOM
|
||||||
support is not yet complete in GAS or BFD.
|
support is not yet complete in GAS or BFD.
|
||||||
|
|
||||||
|
@ -1345,9 +1345,12 @@ md_begin ()
|
|||||||
|
|
||||||
/* Folding of text and data segments fails miserably on the PA.
|
/* Folding of text and data segments fails miserably on the PA.
|
||||||
Warn user and disable "-R" option. */
|
Warn user and disable "-R" option. */
|
||||||
as_warn ("-R option not supported on this target.");
|
if (flagseen['R'])
|
||||||
flag_readonly_data_in_text = 0;
|
{
|
||||||
flagseen['R'] = 0;
|
as_warn ("-R option not supported on this target.");
|
||||||
|
flag_readonly_data_in_text = 0;
|
||||||
|
flagseen['R'] = 0;
|
||||||
|
}
|
||||||
|
|
||||||
pa_spaces_begin ();
|
pa_spaces_begin ();
|
||||||
|
|
||||||
@ -4477,12 +4480,10 @@ pa_comm (unused)
|
|||||||
|
|
||||||
if (symbol)
|
if (symbol)
|
||||||
{
|
{
|
||||||
if (S_IS_DEFINED (symbol) && S_GET_SEGMENT (symbol) == bss_section)
|
/* It is incorrect to check S_IS_DEFINED at this point as
|
||||||
{
|
the symbol will *always* be defined. FIXME. How to
|
||||||
as_bad ("Ignoring attempt to re-define symbol");
|
correctly determine when this label really as been
|
||||||
ignore_rest_of_line ();
|
defined before. */
|
||||||
return;
|
|
||||||
}
|
|
||||||
if (S_GET_VALUE (symbol))
|
if (S_GET_VALUE (symbol))
|
||||||
{
|
{
|
||||||
if (S_GET_VALUE (symbol) != size)
|
if (S_GET_VALUE (symbol) != size)
|
||||||
|
Reference in New Issue
Block a user