Projet_SETI_RISC-V/riscv-gnu-toolchain/gcc/libgomp/testsuite/libgomp.fortran/allocate-1.c
2023-03-06 14:48:14 +01:00

7 lines
89 B
C

#include <stdint.h>
int
is_64bit_aligned (uintptr_t a)
{
return ( (a & 0x3f) == 0);
}