fix arm64ec asm

This commit is contained in:
daanx 2024-12-19 15:29:40 -08:00
commit 8dd605099b
19 changed files with 615 additions and 43 deletions

View file

@ -47,6 +47,7 @@ int main() {
mi_stats_reset(); // ignore earlier allocations
various_tests();
test_mixed1();
//test_std_string();
//test_thread_local();
// heap_thread_free_huge();
@ -107,6 +108,9 @@ static void various_tests() {
t = new (tbuf) Test(42);
t->~Test();
delete[] tbuf;
const char* ptr = ::_Getdays(); // test _base overrid
free((void*)ptr);
}
class Static {