This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: recent troubles with float vectors & bitwise ops
On 8/24/07, Mark Mitchell <mark@codesourcery.com> wrote:
> Let "a" and "b" be floating-point operands of type F, where F is a
> floating-point type. Let N be the number of bytes in F. Then, "a | b"
> is defined as:
Yes that makes sense, not. Since most of the time, you have a mask
and that is what is being used. Like masking the the sign bit or
doing a selection. The mask is most likely a NaN anyways so having
that undefined just does not make sense. So is this going to be on
scalars? If not, then we should still not accept it on vectors.
-- Pinski