mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-26 22:07:58 +08:00
Fix thinko in last change
This commit is contained in:
@ -1257,12 +1257,11 @@ cons_fix_new_hppa (frag, where, size, exp)
|
|||||||
{
|
{
|
||||||
unsigned int rel_type;
|
unsigned int rel_type;
|
||||||
|
|
||||||
/* Get a base relocation type. We use NONE for complex as it should
|
/* Get a base relocation type. */
|
||||||
always be reducable to a constant in the cases we generate. */
|
|
||||||
if (is_DP_relative (*exp))
|
if (is_DP_relative (*exp))
|
||||||
rel_type = R_HPPA_GOTOFF;
|
rel_type = R_HPPA_GOTOFF;
|
||||||
else if (is_complex (*exp))
|
else if (is_complex (*exp))
|
||||||
rel_type = R_HPPA_NONE;
|
rel_type = R_HPPA_COMPLEX;
|
||||||
else
|
else
|
||||||
rel_type = R_HPPA;
|
rel_type = R_HPPA;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user