diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2007-09-15 01:57:57 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2007-09-15 01:57:57 +0000 |
commit | 8ed77a05dcbf5ee97f11902f25d216ebf5c96e41 (patch) | |
tree | d57847daf49794635a04b5292637ea804fb013f5 /gas | |
parent | 2fc5992fbb03ddb73b11db2417aec2901e7458b6 (diff) | |
download | gdb-8ed77a05dcbf5ee97f11902f25d216ebf5c96e41.zip gdb-8ed77a05dcbf5ee97f11902f25d216ebf5c96e41.tar.gz gdb-8ed77a05dcbf5ee97f11902f25d216ebf5c96e41.tar.bz2 |
2007-09-14 H.J. Lu <hongjiu.lu@intel.com>
* config/tc-i386.c (build_modrm_byte): Adjust comment line
wrap.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 5 | ||||
-rw-r--r-- | gas/config/tc-i386.c | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index b736e96..232640a 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,5 +1,10 @@ 2007-09-14 H.J. Lu <hongjiu.lu@intel.com> + * config/tc-i386.c (build_modrm_byte): Adjust comment line + wrap. + +2007-09-14 H.J. Lu <hongjiu.lu@intel.com> + * config/tc-i386.c (build_modrm_byte): Use (A || B) instead of (A || B) != 0. diff --git a/gas/config/tc-i386.c b/gas/config/tc-i386.c index fd9e0c3..5453a00 100644 --- a/gas/config/tc-i386.c +++ b/gas/config/tc-i386.c @@ -4627,8 +4627,8 @@ build_modrm_byte (void) extra modrm byte. */ i.sib.index = NO_INDEX_REGISTER; #if !SCALE1_WHEN_NO_INDEX - /* Another case where we force the second - modrm byte. */ + /* Another case where we force the second modrm + byte. */ if (i.log2_scale_factor) i.rm.regmem = ESCAPE_TO_TWO_BYTE_ADDRESSING; #endif |