diff options
-rw-r--r-- | gas/ChangeLog | 4 | ||||
-rw-r--r-- | gas/config/tc-i386.c | 6 |
2 files changed, 4 insertions, 6 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index d84cb47..140623d 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,7 @@ +2009-02-25 H.J. Lu <hongjiu.lu@intel.com> + + * config/tc-i386.c (fits_in_imm4): Removed. + 2009-02-24 Helge Deller <deller@gmx.de> * config/tc-hppa.c (pa_ip): Add check of immediate values. diff --git a/gas/config/tc-i386.c b/gas/config/tc-i386.c index e780759..1f8cc10 100644 --- a/gas/config/tc-i386.c +++ b/gas/config/tc-i386.c @@ -1673,12 +1673,6 @@ fits_in_unsigned_long (offsetT num ATTRIBUTE_UNUSED) #endif } /* fits_in_unsigned_long() */ -static INLINE int -fits_in_imm4 (offsetT num) -{ - return (num & 0xf) == num; -} - static i386_operand_type smallest_imm_type (offsetT num) { |