p0nce
p0nce
It seems druntime doesn't build with wasm?  This is with LDC 1.27-b3
So it turns out when using WASM you can't use druntime nor libc... fun
mmm apart from `_mm_malloc` and `_mm_free` I see no big difficulty (and of course the ever-difficult rounding functions) at least for basic slow support
Impractical without a libc, since WASM builtin grow memory but do not malloc/free/realloc
- [x] Remove non-LDC use of loadUnaligned - [x] Remove non-LDC use of storeUnaligned - [x] Remove emulated loadUnaligned and storeUnaligned
Reminder for myself: When making new code, do not use loadUnaligned or storeUnaligned unless for LDC code paths. The issues with those is that it needs type-specific overloads, that always...
Related to #102 , using __vector directly is often faster
Done, shufflevector is the same and should go though
Probably possible with the new `__IREx_pure` from LDC 1.13 onwards
Yes, good idea! Thanks.