forked from Imagelibrary/binutils-gdb
2003-09-19 Andrew Cagney <cagney@redhat.com>
* utils.c (align_up, align_down): New functions. * defs.h (align_up, align_down): Declare. * ppc-sysv-tdep.c (align_up, align_down): Delete functions. * s390-tdep.c: Replace "round_up" and "round_down" with "align_up" and "align_down". (round_up, round_down): Delete functions. * mips-tdep.c: Replace ROUND_UP and ROUND_DOWN with "align_up" and "align_down". (ROUND_DOWN, ROUND_UP): Delete macros. (mips_dump_tdep): Do not print "ROUND_UP" or "ROUND_DOWN". * h8300-tdep.c: Replace "round_up" and "round_down" with "align_up" and "align_down". (round_up, round_down): Delete macros. * frv-tdep.c: Replace ROUND_UP and ROUND_DOWN with "align_up" and "align_down". (ROUND_UP, ROUND_DOWN): Delete macros.
This commit is contained in:
16
gdb/utils.c
16
gdb/utils.c
@@ -2929,3 +2929,19 @@ gnu_debuglink_crc32 (unsigned long crc, unsigned char *buf, size_t len)
|
||||
crc = crc32_table[(crc ^ *buf) & 0xff] ^ (crc >> 8);
|
||||
return ~crc & 0xffffffff;;
|
||||
}
|
||||
|
||||
ULONGEST
|
||||
align_up (ULONGEST v, int n)
|
||||
{
|
||||
/* Check that N is really a power of two. */
|
||||
gdb_assert (n && (n & (n-1)) == 0);
|
||||
return (v + n - 1) & -n;
|
||||
}
|
||||
|
||||
ULONGEST
|
||||
align_down (ULONGEST v, int n)
|
||||
{
|
||||
/* Check that N is really a power of two. */
|
||||
gdb_assert (n && (n & (n-1)) == 0);
|
||||
return (v & -n);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user