https://issues.dlang.org/show_bug.cgi?id=23746

Iain Buclaw <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]

--- Comment #1 from Iain Buclaw <[email protected]> ---
(In reply to kinke from comment #0)
> As shown in the example, working with vector masks is very cumbersome as of
> v2.102, requiring reinterpret-casts all over the place.
Only for vector floats though.

The result of a comparison is either all bits are zeros or ones.  For floats,
that's `0` or `nan`.


>        return (min & ltMask)
You can't use bitwise operations on scalar floats, why would you expect it to
be valid on vector floats?

--

Reply via email to