GCC 6.0 has introduced a new feature that allows inline asm to return
flag registers (see
https://gcc.gnu.org/onlinedocs/gcc/Extended-Asm.html#FlagOutputOperands). There
are a couple dozen intrinsics in intrin-impl.h that would benefit from
using this.
There is a define that signals if the gc
On Nov 18, 2015 4:39 AM, "JonY" wrote:
>
> On 11/17/2015 22:13, NightStrike wrote:
> > This is a bad change. Make should be managing dependencies. It's bad
> > form to force a call to mkdir for every iteration, when it only needs
> > to be called once (especially on msys/cygwin, where that extra
On 11/17/2015 22:13, NightStrike wrote:
> This is a bad change. Make should be managing dependencies. It's bad
> form to force a call to mkdir for every iteration, when it only needs
> to be called once (especially on msys/cygwin, where that extra call is
> non-trivial.) The correct way to do it