From: H.J. Lu Date: Tue, 15 Sep 2009 18:51:53 +0000 (+0000) Subject: 2009-09-15 H.J. Lu X-Git-Tag: gdb_7_0-2009-09-16-branchpoint~10 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fa289fb8df4ae53e4141a9de1dcb29de6f9fb85b;p=external%2Fbinutils.git 2009-09-15 H.J. Lu * config/tc-i386.c (offset_in_range): Sign extend offset only if BFD64 is defined. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index 83f867c..0c5ba2a 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,5 +1,10 @@ 2009-09-15 H.J. Lu + * config/tc-i386.c (offset_in_range): Sign extend offset only + if BFD64 is defined. + +2009-09-15 H.J. Lu + * config/tc-i386-intel.c (i386_intel_operand): Initialize intel_state.has_offset to 0. diff --git a/gas/config/tc-i386.c b/gas/config/tc-i386.c index e5ff75f..0e561e3 100644 --- a/gas/config/tc-i386.c +++ b/gas/config/tc-i386.c @@ -1766,9 +1766,9 @@ offset_in_range (offsetT val, int size) /* If BFD64, sign extend val for 32bit address mode. */ if (flag_code != CODE_64BIT || i.prefix[ADDR_PREFIX]) -#endif if ((val & ~(((addressT) 2 << 31) - 1)) == 0) val = (val ^ ((addressT) 1 << 31)) - ((addressT) 1 << 31); +#endif if ((val & ~mask) != 0 && (val & ~mask) != ~mask) {