* config/tc-hppa.c (evaluate_absolute): Avoid relying on
authorJeff Law <law@redhat.com>
Tue, 9 Nov 1993 09:52:59 +0000 (09:52 +0000)
committerJeff Law <law@redhat.com>
Tue, 9 Nov 1993 09:52:59 +0000 (09:52 +0000)
        ANSI-C features.

gas/ChangeLog
gas/config/tc-hppa.c

index 44de0be8b7876ce7d40a44227a43886627e8869f..90c3f8c88c77cc36b0cf2da6a38aa30eabf4d6d2 100644 (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
index 4f2bbc4467a0e1770767f5edf22acb9759ac1e87..5cadd45e3d2cf080aed811524bc3fa8125688654 100644 (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)