diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2007-01-03 22:48:52 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2007-01-03 22:48:52 +0000 |
commit | 1509aa9a58409d1d734799bdbd589402f03f0462 (patch) | |
tree | 72434ef55e0bcb7f18c36a612a9d4753a36e2a06 /gas | |
parent | e3bb37b5251d213aad3e2dd1d4faa9449f48e2a0 (diff) | |
download | fsf-binutils-gdb-1509aa9a58409d1d734799bdbd589402f03f0462.zip fsf-binutils-gdb-1509aa9a58409d1d734799bdbd589402f03f0462.tar.gz fsf-binutils-gdb-1509aa9a58409d1d734799bdbd589402f03f0462.tar.bz2 |
2007-01-03 H.J. Lu <hongjiu.lu@intel.com>
* config/tc-i386.c (smallest_imm_type): Return unsigned int
instead of int.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 5 | ||||
-rw-r--r-- | gas/config/tc-i386.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index b9b60b2..d7d2869 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,5 +1,10 @@ 2007-01-03 H.J. Lu <hongjiu.lu@intel.com> + * config/tc-i386.c (smallest_imm_type): Return unsigned int + instead of int. + +2007-01-03 H.J. Lu <hongjiu.lu@intel.com> + * config/tc-i386.c: Convert to ISO C90 formatting * config/tc-i386.h: Likewise. diff --git a/gas/config/tc-i386.c b/gas/config/tc-i386.c index c047d50..9b525b5 100644 --- a/gas/config/tc-i386.c +++ b/gas/config/tc-i386.c @@ -918,7 +918,7 @@ fits_in_unsigned_long (offsetT num ATTRIBUTE_UNUSED) #endif } /* fits_in_unsigned_long() */ -static int +static unsigned int smallest_imm_type (offsetT num) { if (cpu_arch_flags != (Cpu186 | Cpu286 | Cpu386 | Cpu486 | CpuNo64)) |