2006-12-15 H.J. Lu <hongjiu.lu@intel.com>

* config/tc-i386.c: Add a blank line bewteen function bodies.
This commit is contained in:
H.J. Lu
2006-12-15 19:43:59 +00:00
parent 0767c96d9d
commit 2a962e6dd3
2 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,7 @@
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> 2006-12-15 H.J. Lu <hongjiu.lu@intel.com>
* config/tc-i386.c (build_modrm_byte): Reformat to 72 columns. * config/tc-i386.c (build_modrm_byte): Reformat to 72 columns.

View File

@ -918,6 +918,7 @@ fits_in_signed_word (num)
{ {
return (-32768 <= num) && (num <= 32767); return (-32768 <= num) && (num <= 32767);
} }
static INLINE int static INLINE int
fits_in_signed_long (num) fits_in_signed_long (num)
offsetT num ATTRIBUTE_UNUSED; offsetT num ATTRIBUTE_UNUSED;
@ -929,6 +930,7 @@ fits_in_signed_long (num)
|| (((offsetT) -1 << 31) & num) == ((offsetT) -1 << 31)); || (((offsetT) -1 << 31) & num) == ((offsetT) -1 << 31));
#endif #endif
} /* fits_in_signed_long() */ } /* fits_in_signed_long() */
static INLINE int static INLINE int
fits_in_unsigned_long (num) fits_in_unsigned_long (num)
offsetT num ATTRIBUTE_UNUSED; offsetT num ATTRIBUTE_UNUSED;