* tc_mips.h (MAX_GPREL_OFFSET): Change it to the maximum allowed
[deliverable/binutils-gdb.git] / gas / config / tc-m88k.c
index 4b2a462635c3dab701f61a6329f485218eeca1aa..c12142e1556934ad60170e17ec9956fc054e4981 100644 (file)
@@ -129,7 +129,7 @@ static char *get_cr PARAMS ((char *param, unsigned *regnop));
 static char *get_fcr PARAMS ((char *param, unsigned *regnop));
 static char *get_imm16 PARAMS ((char *param, struct m88k_insn *insn));
 static char *get_o6 PARAMS ((char *param, unsigned *valp));
-static char *get_reg PARAMS ((char *param, unsigned *regnop, char reg_prefix));
+static char *get_reg PARAMS ((char *param, unsigned *regnop, int reg_prefix));
 static char *get_vec9 PARAMS ((char *param, unsigned *valp));
 static char *getval PARAMS ((char *param, unsigned int *valp));
 
@@ -171,7 +171,6 @@ const pseudo_typeS md_pseudo_table[] =
   {"def", s_set, 0},
   {"dfloat", float_cons, 'd'},
   {"ffloat", float_cons, 'f'},
-  {"global", s_globl, 0},
   {"half", cons, 2},
   {"bss", s_lcomm, 1},
   {"string", stringer, 0},
@@ -334,7 +333,7 @@ calcop (format, param, insn)
   int f;
   unsigned val;
   unsigned opcode;
-  char reg_prefix = 'r';
+  int reg_prefix = 'r';
 
   insn->opcode = format->opcode;
   opcode = 0;
@@ -466,9 +465,9 @@ static char *
 get_reg (param, regnop, reg_prefix)
      char *param;
      unsigned *regnop;
-     char reg_prefix;
+     int reg_prefix;
 {
-  char c;
+  unsigned c;
   unsigned regno;
 
   c = *param++;
@@ -885,7 +884,7 @@ get_o6 (param, valp)
 
   *valp = val;
 
-  return(param);
+  return (param);
 }
 
 #define hexval(z) \
@@ -899,7 +898,7 @@ getval (param, valp)
      unsigned int *valp;
 {
   unsigned int val = 0;
-  char c;
+  unsigned int c;
 
   c = *param++;
   if (c == '0')
This page took 0.02511 seconds and 4 git commands to generate.