LDC 0.11.0 Beta 3
Kai Nacke
kai at redstar.de
Sun Jun 30 10:28:11 PDT 2013
On Sunday, 30 June 2013 at 17:25:50 UTC, bearophile wrote:
> Kai:
>
>> Thanks for the nice test case. I can reproduce it with LDC
>> head and LLVM trunk. I created issue #420 for it.
>
> You are welcome. Have you also seen the two cases above?
>
> import core.simd: double2;
> void main() {
> double2 x = [1.0, 2.0];
> double2 r1 = x + [1.0, 2.0];
> double2 r2 = [1.0, 2.0] + x;
> }
>
>
> import core.simd: double2;
> void main() {
> double x = 1.0, y = 2.0;
> double2 a = [x, y];
> double2 sum = [0.0, 0.0];
> sum += [x, y] / a;
> }
>
>
> Bye,
> bearophile
Thanks for the hint. I am still scanning the thread and try to
reproduce the failures.
Kai
More information about the digitalmars-d-ldc
mailing list