mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-25 22:04:51 +02:00
8178499: Remove _ptr_ and _size_ infixes from align functions
Reviewed-by: rehn, tschatzl
This commit is contained in:
parent
0fcf645cff
commit
dbd3b5a79e
115 changed files with 454 additions and 462 deletions
|
@ -154,7 +154,7 @@ class Space: public CHeapObj<mtGC> {
|
|||
|
||||
// Test whether p is double-aligned
|
||||
static bool is_aligned(void* p) {
|
||||
return is_ptr_aligned(p, sizeof(double));
|
||||
return ::is_aligned(p, sizeof(double));
|
||||
}
|
||||
|
||||
// Size computations. Sizes are in bytes.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue