bartek-siudeja

Results 2 issues of bartek-siudeja

It seems that ldc2 has a bit of trouble with IR generation on vectorized computations. I believe this could be connected to this issue in intel-intrinsics library: https://github.com/AuburnSounds/intel-intrinsics/issues/86 https://godbolt.org/z/aKh4rWY83 These...

I just stumbled into the following: ``` import core.simd; double test(double x, double2 y) { x += y; return x; } ``` with `-O3` compiles to ``` double example.test(double, __vector(double[2])):...