for $TEXT$ and $PRIVATE$ from the default space structure.
Sat Oct 30 14:26:20 1993 Jeffrey A. Law (law@snake.cs.utah.edu)
+ * config/tc-hppa.c (pa_parse_space_stmt): Get segment and sort key
+ for $TEXT$ and $PRIVATE$ from the default space structure.
+
* config/tc-hppa.c (pa_export_args): Always set BSF_FUNCTION
as appropriate for the given type.
private = FALSE;
if (strcasecmp (space_name, "$TEXT$") == 0)
{
- seg = text_section;
- sort = 8;
+ seg = pa_def_spaces[0].segment;
+ sort = pa_def_spaces[0].sort;
}
- else
+ else if (strcasecmp (space_name, "$PRIVATE$") == 0)
{
- seg = data_section;
- sort = 16;
+ seg = pa_def_spaces[1].segment;
+ sort = pa_def_spaces[1].sort;
}
if (!is_end_of_statement ())