p0nce

Results 629 comments of p0nce

It seems druntime doesn't build with wasm? ![image](https://user-images.githubusercontent.com/1067485/125949117-e2dbd9aa-3e89-4cd4-9ecc-b6c1065d06c7.png) 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