* config/xtensa-istack.h (struct tinsn_struct): Delete fixup field.
authorBob Wilson <bob.wilson@acm.org>
Fri, 2 Feb 2007 23:26:53 +0000 (23:26 +0000)
committerBob Wilson <bob.wilson@acm.org>
Fri, 2 Feb 2007 23:26:53 +0000 (23:26 +0000)
(tinsn_get_tok): Delete prototype.
* config/tc-xtensa.c (tinsn_get_tok): Delete.

gas/ChangeLog
gas/config/tc-xtensa.c
gas/config/xtensa-istack.h

index 74f02dce46755fe65e347f24acbbf9351a0b438d..a14473ff2839817706e1967313f9e54e455340d0 100644 (file)
@@ -1,3 +1,9 @@
+2007-02-02  Bob Wilson  <bob.wilson@acm.org>
+
+       * config/xtensa-istack.h (struct tinsn_struct): Delete fixup field.
+       (tinsn_get_tok): Delete prototype.
+       * config/tc-xtensa.c (tinsn_get_tok): Delete.
+       
 2007-02-02  Bob Wilson  <bob.wilson@acm.org>
 
        * config/xtensa-relax.h (struct build_instr): Delete id field.
index f83339acbd946dae62086b276b81ca1be3194d9f..3197c7e74e3b02e1e942fba4bf99cec71205cf2f 100644 (file)
@@ -10991,17 +10991,6 @@ tinsn_init (TInsn *dst)
 }
 
 
-/* Get the ``num''th token of the TInsn.
-   It is illegal to call this if num > insn->ntoks.  */
-
-expressionS *
-tinsn_get_tok (TInsn *insn, int num)
-{
-  assert (num < insn->ntok);
-  return &insn->tok[num];
-}
-
-
 /* Return TRUE if ANY of the operands in the insn are symbolic.  */
 
 static bfd_boolean
index 7d2471abd465d79f8cbb5abaa11aba7fe89813a9..a6ec40b8388d83918a614b5bc5db7344c33a04c6 100644 (file)
@@ -1,5 +1,5 @@
 /* Declarations for stacks of tokenized Xtensa instructions.
-   Copyright (C) 2003, 2004 Free Software Foundation, Inc.
+   Copyright (C) 2003, 2004, 2007 Free Software Foundation, Inc.
 
    This file is part of GAS, the GNU Assembler.
 
@@ -48,8 +48,6 @@ typedef struct tinsn_struct
   expressionS tok[MAX_INSN_ARGS];
   unsigned linenum;
 
-  struct fixP *fixup;
-
   /* Filled out by relaxation_requirements:  */
   enum xtensa_relax_statesE subtype;
   int literal_space;
@@ -79,7 +77,6 @@ void istack_pop (IStack *);
 
 /* TInsn utilities.  */
 void tinsn_init (TInsn *);
-expressionS *tinsn_get_tok (TInsn *, int);
 
 
 /* vliw_insn: bundles of TInsns.  */
This page took 0.03402 seconds and 4 git commands to generate.