Blame binutils-2.22.52.0.3-fix-signedness-warning.patch

d2cefe8
--- gas/config/tc-h8300.c.signedness~	2012-05-07 18:08:33.000000000 +0100
d2cefe8
+++ gas/config/tc-h8300.c	2012-05-30 21:26:20.668415305 +0100
d2cefe8
@@ -359,7 +359,7 @@
d2cefe8
 static char *skip_colonthing (char *, int *);
d2cefe8
 static char *parse_exp (char *, struct h8_op *);
d2cefe8
 
d2cefe8
-static int constant_fits_width_p (struct h8_op *, unsigned int);
d2cefe8
+static int constant_fits_width_p (struct h8_op *, offsetT);
d2cefe8
 static int constant_fits_size_p (struct h8_op *, int, int);
d2cefe8
 
d2cefe8
 /*
d2cefe8
@@ -561,7 +561,7 @@
d2cefe8
    @@aa[:8]		memory indirect.  */
d2cefe8
 
d2cefe8
 static int
d2cefe8
-constant_fits_width_p (struct h8_op *operand, unsigned int width)
d2cefe8
+constant_fits_width_p (struct h8_op *operand, offsetT width)
d2cefe8
 {
d2cefe8
   offsetT num;
d2cefe8