2009-12-18 Steve Ellcey <sje@cup.hp.com>

* config/tc-hppa.c: Change access to access_ctr.
This commit is contained in:
Steve Ellcey
2009-12-18 18:11:56 +00:00
parent 0675e18865
commit fd4db1a12f
2 changed files with 14 additions and 10 deletions

View File

@ -1,3 +1,7 @@
2009-12-18 Steve Ellcey <sje@cup.hp.com>
* config/tc-hppa.c: Change access to access_ctr.
2009-12-17 Nick Clifton <nickc@redhat.com> 2009-12-17 Nick Clifton <nickc@redhat.com>
PR binutils/10924 PR binutils/10924

View File

@ -7369,7 +7369,7 @@ pa_subspace (int create_new)
{ {
char *name, *ss_name, c; char *name, *ss_name, c;
char loadable, code_only, comdat, common, dup_common, zero, sort; char loadable, code_only, comdat, common, dup_common, zero, sort;
int i, access, space_index, alignment, quadrant, applicable, flags; int i, access_ctr, space_index, alignment, quadrant, applicable, flags;
sd_chain_struct *space; sd_chain_struct *space;
ssd_chain_struct *ssd; ssd_chain_struct *ssd;
asection *section; asection *section;
@ -7392,7 +7392,7 @@ pa_subspace (int create_new)
/* Load default values. */ /* Load default values. */
sort = 0; sort = 0;
access = 0x7f; access_ctr = 0x7f;
loadable = 1; loadable = 1;
comdat = 0; comdat = 0;
common = 0; common = 0;
@ -7437,7 +7437,7 @@ pa_subspace (int create_new)
space_index = pa_def_subspaces[i].space_index; space_index = pa_def_subspaces[i].space_index;
alignment = pa_def_subspaces[i].alignment; alignment = pa_def_subspaces[i].alignment;
quadrant = pa_def_subspaces[i].quadrant; quadrant = pa_def_subspaces[i].quadrant;
access = pa_def_subspaces[i].access; access_ctr = pa_def_subspaces[i].access;
sort = pa_def_subspaces[i].sort; sort = pa_def_subspaces[i].sort;
break; break;
} }
@ -7475,7 +7475,7 @@ pa_subspace (int create_new)
{ {
*input_line_pointer = c; *input_line_pointer = c;
input_line_pointer++; input_line_pointer++;
access = get_absolute_expression (); access_ctr = get_absolute_expression ();
} }
else if ((strncasecmp (name, "sort", 4) == 0)) else if ((strncasecmp (name, "sort", 4) == 0))
{ {
@ -7583,14 +7583,14 @@ pa_subspace (int create_new)
current_subspace = update_subspace (space, ss_name, loadable, current_subspace = update_subspace (space, ss_name, loadable,
code_only, comdat, common, code_only, comdat, common,
dup_common, sort, zero, access, dup_common, sort, zero, access_ctr,
space_index, alignment, quadrant, space_index, alignment, quadrant,
section); section);
else else
current_subspace = create_new_subspace (space, ss_name, loadable, current_subspace = create_new_subspace (space, ss_name, loadable,
code_only, comdat, common, code_only, comdat, common,
dup_common, zero, sort, dup_common, zero, sort,
access, space_index, access_ctr, space_index,
alignment, quadrant, section); alignment, quadrant, section);
demand_empty_rest_of_line (); demand_empty_rest_of_line ();
@ -7821,7 +7821,7 @@ create_new_subspace (sd_chain_struct *space,
int dup_common, int dup_common,
int is_zero ATTRIBUTE_UNUSED, int is_zero ATTRIBUTE_UNUSED,
int sort, int sort,
int access, int access_ctr,
int space_index ATTRIBUTE_UNUSED, int space_index ATTRIBUTE_UNUSED,
int alignment ATTRIBUTE_UNUSED, int alignment ATTRIBUTE_UNUSED,
int quadrant, int quadrant,
@ -7876,7 +7876,7 @@ create_new_subspace (sd_chain_struct *space,
} }
#ifdef obj_set_subsection_attributes #ifdef obj_set_subsection_attributes
obj_set_subsection_attributes (seg, space->sd_seg, access, sort, obj_set_subsection_attributes (seg, space->sd_seg, access_ctr, sort,
quadrant, comdat, common, dup_common); quadrant, comdat, common, dup_common);
#endif #endif
@ -7896,7 +7896,7 @@ update_subspace (sd_chain_struct *space,
int dup_common, int dup_common,
int sort, int sort,
int zero ATTRIBUTE_UNUSED, int zero ATTRIBUTE_UNUSED,
int access, int access_ctr,
int space_index ATTRIBUTE_UNUSED, int space_index ATTRIBUTE_UNUSED,
int alignment ATTRIBUTE_UNUSED, int alignment ATTRIBUTE_UNUSED,
int quadrant, int quadrant,
@ -7907,7 +7907,7 @@ update_subspace (sd_chain_struct *space,
chain_entry = is_defined_subspace (name); chain_entry = is_defined_subspace (name);
#ifdef obj_set_subsection_attributes #ifdef obj_set_subsection_attributes
obj_set_subsection_attributes (section, space->sd_seg, access, sort, obj_set_subsection_attributes (section, space->sd_seg, access_ctr, sort,
quadrant, comdat, common, dup_common); quadrant, comdat, common, dup_common);
#endif #endif