From: Jeff Law Date: Sat, 30 Oct 1993 23:00:34 +0000 (+0000) Subject: * config/tc-hppa.c (pa_parse_space_stmt): Get segment and sort key X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0f3b419c4c71065885292f014fc14e8d86197cae;p=binutils-gdb.git * config/tc-hppa.c (pa_parse_space_stmt): Get segment and sort key for $TEXT$ and $PRIVATE$ from the default space structure. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index f6db3672e62..373e1967ba4 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,5 +1,8 @@ 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. diff --git a/gas/config/tc-hppa.c b/gas/config/tc-hppa.c index a2ed54ab07e..46063250500 100644 --- a/gas/config/tc-hppa.c +++ b/gas/config/tc-hppa.c @@ -5110,13 +5110,13 @@ pa_parse_space_stmt (space_name, create_flag) 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 ())