diff options
author | Quentin Carbonneaux <quentin@c9x.me> | 2017-07-27 19:48:54 -0400 |
---|---|---|
committer | Quentin Carbonneaux <quentin@c9x.me> | 2017-07-30 11:13:56 -0400 |
commit | 2b64b75c845d0491c7a701e44485d2856eeb686d (patch) | |
tree | 9a0b8819cadaf31a81e534be7a8c6041eff4793d /all.h | |
parent | 64c79edda0bc29d11b7efaffa9d051f64ea431d0 (diff) | |
download | roux-2b64b75c845d0491c7a701e44485d2856eeb686d.tar.gz |
fix dynamic stack allocs for amd64
The arm64 might have the same problem but it is currently unable to handle them even in instruction selection. Thanks to Jean Dao for reporting the bug.
Diffstat (limited to 'all.h')
-rw-r--r-- | all.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/all.h b/all.h index 629fea3..24a1755 100644 --- a/all.h +++ b/all.h @@ -342,6 +342,7 @@ struct Fn { int slot; char export; char vararg; + char dynalloc; char name[NString]; }; |