Don't leave DLX the_insn uninitialised
[deliverable/binutils-gdb.git] / gas / config / tc-xstormy16.c
index 120c4da2e168cc55699cb64cd13a6d9e15068b7b..e8eba894be924082f68ffe2c8c014d1fdc2a0e4e 100644 (file)
@@ -1,6 +1,5 @@
 /* tc-xstormy16.c -- Assembler for the Sanyo XSTORMY16.
-   Copyright 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2009
-   Free Software Foundation.
+   Copyright (C) 2000-2014 Free Software Foundation, Inc.
 
    This file is part of GAS, the GNU Assembler.
 
@@ -194,11 +193,9 @@ void
 xstormy16_cons_fix_new (fragS *f,
                        int where,
                        int nbytes,
-                       expressionS *exp)
+                       expressionS *exp,
+                       bfd_reloc_code_real_type code)
 {
-  bfd_reloc_code_real_type code;
-  fixS *fix;
-
   if (exp->X_op == O_fptr_symbol)
     {
       switch (nbytes)
@@ -239,7 +236,7 @@ xstormy16_cons_fix_new (fragS *f,
       return;
     }
 
-  fix = fix_new_exp (f, where, nbytes, exp, 0, code);
+  fix_new_exp (f, where, nbytes, exp, 0, code);
 }
 
 /* Called while parsing an instruction to create a fixup.
This page took 0.025513 seconds and 4 git commands to generate.