From: Jeff Law Date: Tue, 9 Nov 1993 09:52:59 +0000 (+0000) Subject: * config/tc-hppa.c (evaluate_absolute): Avoid relying on X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;ds=sidebyside;h=f41f3d72ecec5912af327f34cbce5db64f816564;p=binutils-gdb.git * config/tc-hppa.c (evaluate_absolute): Avoid relying on ANSI-C features. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index 44de0be8b78..90c3f8c88c7 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -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 diff --git a/gas/config/tc-hppa.c b/gas/config/tc-hppa.c index 4f2bbc4467a..5cadd45e3d2 100644 --- a/gas/config/tc-hppa.c +++ b/gas/config/tc-hppa.c @@ -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)