* struc-symbol.h: Add new "sy_used" field to the symbol structure.
authorJeff Law <law@redhat.com>
Tue, 2 Nov 1993 06:10:52 +0000 (06:10 +0000)
committerJeff Law <law@redhat.com>
Tue, 2 Nov 1993 06:10:52 +0000 (06:10 +0000)
* expr.c (operand): Set sy_used for any symbol used as an operand.
(expr): Likewise for any symbol used in an expression.
* config/tc-hppa.h (tc_frob_symbol): Define.  Punt imported
symbols which are never used and absolute symbols which local scope.

gas/ChangeLog
gas/expr.c

index 3670d1b..a5c3468 100644 (file)
@@ -1,5 +1,11 @@
 Mon Nov  1 21:37:04 1993  Jeffrey A. Law  (law@snake.cs.utah.edu)
 
+       * struc-symbol.h: Add new "sy_used" field to the symbol structure.
+       * expr.c (operand): Set sy_used for any symbol used as an operand.
+       (expr): Likewise for any symbol used in an expression.
+       * config/tc-hppa.h (tc_frob_symbol): Define.  Punt imported
+       symbols which are never used and absolute symbols which local scope.
+
        * config/obj-som.h (obj_frob_file): Define.
        * config/obj-som.c (obj_som_init_stab_section): Set alignment
        of stab sections.  Make space for the special stab entry.
index 838a847..8404859 100644 (file)
@@ -671,6 +671,10 @@ operand (expressionP)
   SKIP_WHITESPACE ();          /*->1st char after operand. */
   know (*input_line_pointer != ' ');
 
+  /* The PA port needs this information.  */
+  if (expressionP->X_add_symbol)
+    expressionP->X_add_symbol->sy_used = 1;
+
   switch (expressionP->X_op)
     {
     default:
@@ -980,6 +984,10 @@ expr (rank, resultP)
       op_left = op_right;
     }                          /* While next operator is >= this rank. */
 
+  /* The PA port needs this information.  */
+  if (resultP->X_add_symbol)
+    resultP->X_add_symbol->sy_used = 1;
+
   return resultP->X_op == O_constant ? absolute_section : retval;
 }
 \f