mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-01-09 09:33:44 +08:00
* config/tc-hppa.c (evaluate_absolute): Avoid relying on
ANSI-C features.
This commit is contained in:
parent
48153d49ce
commit
f41f3d72ec
@ -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
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user