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.
This commit is contained in:
Quentin Carbonneaux 2017-07-27 19:48:54 -04:00
parent 64c79edda0
commit 2b64b75c84
4 changed files with 41 additions and 4 deletions

1
all.h
View file

@ -342,6 +342,7 @@ struct Fn {
int slot;
char export;
char vararg;
char dynalloc;
char name[NString];
};