mirror of
https://forge.sourceware.org/marek/gcc.git
synced 2026-02-22 03:47:02 -05:00
libgomp/ChangeLog: * testsuite/libgomp.fortran/allocate-1.c (is_64bit_aligned): Renamed from is_64bit_aligned_. * testsuite/libgomp.fortran/allocate-1.f90: Fix interface decl and use it, more implicit none, remove unused argument.
8 lines
89 B
C
8 lines
89 B
C
#include <stdint.h>
|
|
|
|
int
|
|
is_64bit_aligned (uintptr_t a)
|
|
{
|
|
return ( (a & 0x3f) == 0);
|
|
}
|