diff options
| author | Yonatan Goldschmidt <yon.goldschmidt@gmail.com> | 2021-02-21 02:05:40 +0200 |
|---|---|---|
| committer | Damien George <damien@micropython.org> | 2021-03-11 12:54:05 +1100 |
| commit | 098ac11bb0cb912909af801015ac07bd2bf01ce7 (patch) | |
| tree | 1aaf0424784acd87a461e62198cabb601bac659c /lib/utils/gchelper.h | |
| parent | e196cb762e5a946bee0404b043acd673178c162d (diff) | |
lib/utils/gchelper_generic: Implement AArch64 support.
Diffstat (limited to 'lib/utils/gchelper.h')
| -rw-r--r-- | lib/utils/gchelper.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/utils/gchelper.h b/lib/utils/gchelper.h index 4b6ead6ba..645ee837f 100644 --- a/lib/utils/gchelper.h +++ b/lib/utils/gchelper.h @@ -39,6 +39,8 @@ typedef uintptr_t gc_helper_regs_t[6]; typedef uintptr_t gc_helper_regs_t[4]; #elif defined(__thumb2__) || defined(__thumb__) || defined(__arm__) typedef uintptr_t gc_helper_regs_t[10]; +#elif defined(__aarch64__) +typedef uintptr_t gc_helper_regs_t[11]; // x19-x29 #endif #endif |
