This is the mail archive of the binutils@sources.redhat.com mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Fix warnings in gas/config/tc-s390.c



Ok to commit?

Andreas

2001-08-25  Andreas Jaeger  <aj@suse.de>

	* config/tc-s390.c: Add missing prototypes
	(md_gather_operands): Make static.

============================================================
Index: gas/config/tc-s390.c
--- gas/config/tc-s390.c	2001/08/13 08:03:52	1.7
+++ gas/config/tc-s390.c	2001/08/25 15:34:48
@@ -198,6 +198,16 @@
 
 #define REG_NAME_CNT (sizeof (pre_defined_registers) / sizeof (struct pd_reg))
 
+static int reg_name_search
+  PARAMS ((const struct pd_reg *, int, const char *));
+static boolean register_name PARAMS ((expressionS *));
+static void init_default_arch PARAMS ((void));
+static void s390_insert_operand
+  PARAMS ((unsigned char *, const struct s390_operand *, offsetT, char *,
+	   unsigned int));
+static char *md_gather_operands
+  PARAMS ((char *, unsigned char *, const struct s390_opcode *));
+
 /* Given NAME, find the register number associated with that name, return
    the integer value associated with the given name or -1 on failure.  */
 
@@ -593,6 +603,12 @@
     elf_suffix_type suffix;
   };
 
+static elf_suffix_type s390_elf_suffix PARAMS ((char **, expressionS *));
+static int s390_exp_compare PARAMS ((expressionS *exp1, expressionS *exp2));
+static elf_suffix_type s390_lit_suffix
+  PARAMS ((char **, expressionS *, elf_suffix_type));
+
+
 /* Parse @got/@plt/@gotoff. and return the desired relocation.  */
 static elf_suffix_type
 s390_elf_suffix (str_p, exp_p)
@@ -974,7 +990,7 @@
 
 /* This routine is called for each instruction to be assembled.  */
 
-char *
+static char *
 md_gather_operands (str, insn, opcode)
      char *str;
      unsigned char *insn;

-- 
 Andreas Jaeger
  SuSE Labs aj@suse.de
   private aj@arthur.inka.de
    http://www.suse.de/~aj


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]