Name: Anonymous 2007-01-01 5:45
i have a problem regarding SSE asm. code snippet is like this:
//det contains 4 single-pres floating-point no.
//andmask is 7fffffff 7fffffff 7fffffff 7fffffff
.
.
movaps xmm1,det;
andps xmm1,andmask;
.
.
basically i want to turn all the SP FP in xmm1 into positive by zero-ing the sign bit.but the code didn't give me what i want.
am i missing something here?
//det contains 4 single-pres floating-point no.
//andmask is 7fffffff 7fffffff 7fffffff 7fffffff
.
.
movaps xmm1,det;
andps xmm1,andmask;
.
.
basically i want to turn all the SP FP in xmm1 into positive by zero-ing the sign bit.but the code didn't give me what i want.
am i missing something here?