Commit 197adb69 by Andreas Schwab Committed by Andreas Schwab

Summary: boehm-gc: add support for aarch64 ILP32

* include/private/gcconfig.h [AARCH64] (ALIGNMENT, CPP_WORDSZ):
Define for __ILP32__.

From-SVN: r234255
parent 446fd642
2016-03-16 Andreas Schwab <schwab@suse.de>
* include/private/gcconfig.h [AARCH64] (ALIGNMENT, CPP_WORDSZ):
Define for __ILP32__.
2015-10-09 David Malcolm <dmalcolm@redhat.com> 2015-10-09 David Malcolm <dmalcolm@redhat.com>
* testsuite/lib/boehm-gc.exp: Load multiline.exp before * testsuite/lib/boehm-gc.exp: Load multiline.exp before
......
...@@ -1854,9 +1854,14 @@ ...@@ -1854,9 +1854,14 @@
# endif # endif
# ifdef AARCH64 # ifdef AARCH64
# define CPP_WORDSZ 64 # ifdef __ILP32__
# define ALIGNMENT 4
# define CPP_WORDSZ 32
# else
# define ALIGNMENT 8
# define CPP_WORDSZ 64
# endif
# define MACH_TYPE "AARCH64" # define MACH_TYPE "AARCH64"
# define ALIGNMENT 8
# ifndef HBLKSIZE # ifndef HBLKSIZE
# define HBLKSIZE 4096 # define HBLKSIZE 4096
# endif # endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment