* config/tc-hppa.c (evaluate_absolute): Avoid relying on

ANSI-C features.
This commit is contained in:
Jeff Law 1993-11-09 09:52:59 +00:00
parent 48153d49ce
commit f41f3d72ec
2 changed files with 5 additions and 1 deletions

View File

@ -1,5 +1,8 @@
Tue Nov 9 00:49:01 1993 Jeffrey A. Law (law@snake.cs.utah.edu)
* config/tc-hppa.c (evaluate_absolute): Avoid relying on
ANSI-C features.
* config/tc-hppa.c (pa_type_args): Renamed from pa_export_args.
Accept new argument "is_export". All callers changed. When
processing a .export directive for a function, do not allow

View File

@ -3602,9 +3602,10 @@ evaluate_absolute (insn)
struct pa_it *insn;
{
int value;
expressionS exp = insn->exp;
expressionS exp;
int field_selector = insn->field_selector;
exp = insn->exp;
value = exp.X_add_number;
switch (field_selector)