Convert unmaintained files over to ISO-C90 and fix formatting.
[deliverable/binutils-gdb.git] / gas / config / tc-ns32k.h
index 69c86ecdf5c0a099de2d763e8cdbd9bd6ba1d4a2..9325e22b9c0aa921f9e21ed1fdaf7fec4eda4010 100644 (file)
@@ -1,5 +1,6 @@
 /* tc-ns32k.h -- Opcode table for National Semi 32k processor
-   Copyright (C) 1987, 92, 93, 94, 95, 97, 1999 Free Software Foundation, Inc.
+   Copyright 1987, 1992, 1993, 1994, 1995, 1997, 2000, 2002, 2005
+   Free Software Foundation, Inc.
 
    This file is part of GAS, the GNU Assembler.
 
 #define TARGET_BYTES_BIG_ENDIAN        0
 
 #define TC_PCREL_ADJUST(F) md_pcrel_adjust(F)
+extern int md_pcrel_adjust (fragS *);
 
 #ifdef BFD_ASSEMBLER
 #define NO_RELOC BFD_RELOC_NONE
 
 #define TARGET_ARCH            bfd_arch_ns32k
 
-#ifndef TARGET_FORMAT          /* Maybe defined in te-*.h */
+#ifndef TARGET_FORMAT          /* Maybe defined in te-*.h */
 #define TARGET_FORMAT          "a.out-pc532-mach"
 #endif
 #else
 #define ARG_LEN 50
 
 #define TC_CONS_FIX_NEW cons_fix_new_ns32k
-extern void fix_new_ns32k_exp PARAMS((fragS *frag,
-                                  int where,
-                                  int size,
-                                  expressionS *exp,
-                                  int pcrel,
-                                  int im_disp,
-                                  bit_fixS *bit_fixP,  /* really bit_fixS */
-                                  int bsr,
-                                  fragS *opcode_frag,
-                                  unsigned int opcode_offset));
-
-
-extern void fix_new_ns32k PARAMS ((fragS *frag,
-                                  int where,
-                                  int size,
-                                  symbolS *add_symbol,
-                                  long offset,
-                                  int pcrel,
-                                  int im_disp,
-                                  bit_fixS *bit_fixP,  /* really bit_fixS */
-                                  int bsr,
-                                  fragS *opcode_frag,
-                                  unsigned int opcode_offset));
-
-extern void cons_fix_new_ns32k PARAMS ((fragS *frag,
-                                       int where,
-                                       int size,
-                                       expressionS *exp));
-
-/* the NS32x32 has a non 0 nop instruction which should be used in aligns */
+extern void cons_fix_new_ns32k (fragS *, int, int, expressionS *);
+
+/* The NS32x32 has a non 0 nop instruction which should be used in aligns.  */
 #define NOP_OPCODE 0xa2
 
 #define md_operand(x)
@@ -99,33 +74,34 @@ extern const struct relax_type md_relax_table[];
 #define TC_GENERIC_RELAX_TABLE md_relax_table
 
 #define TC_FRAG_TYPE                           \
-struct {                                       \
-  fragS *fr_opcode_fragP;                      \
-  unsigned int fr_opcode_offset;               \
-  char fr_bsr;                                 \
-}
+  struct                                       \
+    {                                          \
+      fragS *      fr_opcode_fragP;            \
+      unsigned int fr_opcode_offset;           \
+      char         fr_bsr;                     \
+    }
 
 #define TC_FRAG_INIT(X)                                \
   do                                           \
      {                                         \
        frag_opcode_frag (X) = NULL;            \
        frag_opcode_offset (X) = 0;             \
-       frag_bsr (X) = 0;                               \
+       frag_bsr (X) = 0;                       \
      }                                         \
-  while(0)
+  while (0)
 
-/* Accessor macros for things which may move around */
+/* Accessor macros for things which may move around */
 #define frag_opcode_frag(X)   (X)->tc_frag_data.fr_opcode_fragP
 #define frag_opcode_offset(X) (X)->tc_frag_data.fr_opcode_offset
 #define frag_bsr(X)           (X)->tc_frag_data.fr_bsr
 
 #define TC_FIX_TYPE                            \
-struct                                         \
-{                                              \
-  fragS *opcode_fragP;                         \
-  unsigned int opcode_offset;                  \
-  unsigned int bsr : 1;                                \
-}
+  struct                                       \
+    {                                          \
+      fragS *      opcode_fragP;               \
+      unsigned int opcode_offset;              \
+      unsigned int bsr : 1;                    \
+    }
 
 /* Accessor macros for things which may move around.
    See comments in write.h.  */
@@ -142,14 +118,14 @@ struct                                            \
        fix_opcode_offset(X) = 0;               \
        fix_bsr(X) = 0;                         \
      }                                         \
-  while(0)
+  while (0)
 
-#define TC_FIX_DATA_PRINT(FILE, FIXP)                                  \
+#define TC_FIX_DATA_PRINT(FILE, FIX                                  \
   do                                                                   \
     {                                                                  \
-      fprintf((FILE), "opcode_frag=%ld, operand offset=%d, bsr=%d\n",  \
-             (unsigned long) fix_opcode_frag (FIXP),                   \
-             fix_opcode_offset (FIXP),                                 \
-             fix_bsr (FIXP));                                          \
+      fprintf ((FILE), "opcode_frag=%ld, operand offset=%d, bsr=%d\n", \
+             (unsigned long) fix_opcode_frag (FIX),                    \
+             fix_opcode_offset (FIX),                                  \
+             fix_bsr (FIX));                                           \
     }                                                                  \
-  while(0)
+  while (0)
This page took 0.035689 seconds and 4 git commands to generate.