Add AArch64-32 target support

(Implement boehm-gc for AARCH64:ILP32)

* include/private/gcconfig.h (CPP_WORDSZ, ALIGNMENT): Correct for
AARCH64:ILP32.
This commit is contained in:
Andrew Pinski
2015-02-13 20:44:37 +03:00
committed by Ivan Maidanski
parent bf62552626
commit b399b13b9e
+7 -2
View File
@@ -2020,9 +2020,14 @@
# endif
# ifdef AARCH64
# define CPP_WORDSZ 64
# define MACH_TYPE "AARCH64"
# define ALIGNMENT 8
# ifdef __ILP32__
# define CPP_WORDSZ 32
# define ALIGNMENT 4
# else
# define CPP_WORDSZ 64
# define ALIGNMENT 8
# endif
# ifndef HBLKSIZE
# define HBLKSIZE 4096
# endif