diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2006-12-15 19:43:59 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2006-12-15 19:43:59 +0000 |
commit | 2a962e6dd36ff0a5cbb92995e920ce52447eda35 (patch) | |
tree | 8b075201dfe3cc565121998f5fb59fab4a413def | |
parent | 0767c96d9dfcef23d67c4976a71c3cc5e59b8f2f (diff) | |
download | gdb-2a962e6dd36ff0a5cbb92995e920ce52447eda35.zip gdb-2a962e6dd36ff0a5cbb92995e920ce52447eda35.tar.gz gdb-2a962e6dd36ff0a5cbb92995e920ce52447eda35.tar.bz2 |
2006-12-15 H.J. Lu <hongjiu.lu@intel.com>
* config/tc-i386.c: Add a blank line bewteen function bodies.
-rw-r--r-- | gas/ChangeLog | 4 | ||||
-rw-r--r-- | gas/config/tc-i386.c | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index cbc3034..7924086 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,5 +1,9 @@ 2006-12-15 H.J. Lu <hongjiu.lu@intel.com> + * config/tc-i386.c: Add a blank line bewteen function bodies. + +2006-12-15 H.J. Lu <hongjiu.lu@intel.com> + * config/tc-i386.c (build_modrm_byte): Reformat to 72 columns. 2006-12-14 Daniel Jacobowitz <dan@codesourcery.com> diff --git a/gas/config/tc-i386.c b/gas/config/tc-i386.c index d4bba26..e3cb329 100644 --- a/gas/config/tc-i386.c +++ b/gas/config/tc-i386.c @@ -918,6 +918,7 @@ fits_in_signed_word (num) { return (-32768 <= num) && (num <= 32767); } + static INLINE int fits_in_signed_long (num) offsetT num ATTRIBUTE_UNUSED; @@ -929,6 +930,7 @@ fits_in_signed_long (num) || (((offsetT) -1 << 31) & num) == ((offsetT) -1 << 31)); #endif } /* fits_in_signed_long() */ + static INLINE int fits_in_unsigned_long (num) offsetT num ATTRIBUTE_UNUSED; |