"David Mathog" writes:
> Can somebody please explain the behavior of the following program
> to me?
This question is not appropriate for the gcc@gcc.gnu.org mailing list,
which is for the development of gcc itself. It would be appropriate on
gcc-h...@gcc.gnu.org. Please take any followups to g
Can somebody please explain the behavior of the following program
to me?
cat >test.c <
#include
#include
int main(void){
register __m128 var;
fprintf(stdout,"pre %X\n",var);
var = _mm_setzero_ps();
fprintf(stdout,"post %X\n",var);
fprintf(stdout,"zerof %X\n",0.0f);
exit(EXIT_SU