Crash with foreach handle Variadic Templates

kinke noone at nowhere.com
Sat Aug 24 10:58:00 UTC 2019


On Saturday, 24 August 2019 at 01:25:46 UTC, lili wrote:
>  Is where has a bug in implementation.

When running LDC with -vv, you'll see something like this in the 
very first line:

Targeting 'i686-pc-linux-gnu' (CPU 'pentium4' with features '')

We default to a Pentium 4 for 32-bit x86, and that leads to SSE 
instructions being used (movsd). Use -mcpu to select an older 
CPU, e.g., -mcpu=i386.


More information about the digitalmars-d-ldc mailing list