From: Jeff Law Date: Sun, 7 Nov 1993 09:15:13 +0000 (+0000) Subject: * config/tc-hppa.c (create_new_subspace): Initialize subspace_defined. X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=240cbc571fbb493aa62300cf44ca5f829d8cee80;p=deliverable%2Fbinutils-gdb.git * config/tc-hppa.c (create_new_subspace): Initialize subspace_defined. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index fcc86470ed..ccd7e1718e 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,5 +1,7 @@ Sun Nov 7 01:02:08 1993 Jeffrey A. Law (law@snake.cs.utah.edu) + * config/tc-hppa.c (create_new_subspace): Initialize subspace_defined. + * config/tc-hppa.c (pa-ip, case 'z'): Make field selectors work for 'z' operands (target of ble branch). diff --git a/gas/config/tc-hppa.c b/gas/config/tc-hppa.c index d730b45903..1c31bc1da3 100644 --- a/gas/config/tc-hppa.c +++ b/gas/config/tc-hppa.c @@ -6020,6 +6020,10 @@ create_new_subspace (space, name, loadable, code_only, common, SUBSPACE_SPACE_INDEX (chain_entry) = space_index; SUBSPACE_ZERO (chain_entry) = is_zero; + /* Initialize subspace_defined. When we hit a .subspace directive + we'll set it to 1 which "locks-in" the subspace attributes. */ + SUBSPACE_DEFINED (chain_entry) = 0; + chain_entry->ssd_subseg = USE_ALIASES ? pa_next_subseg (space) : 0; chain_entry->ssd_seg = seg; chain_entry->ssd_last_align = 1;