craig.topper added a comment.

I checked Redhat 7.4 that's on the server I'm using for work. And I had a 
coworker check his Ubuntu 18.04 system with this program. And both systems 
printed 1f80 as the value of MXCSR which shows FTZ and DAZ are both 0. Are you 
seeing something different?

  #include <x86intrin.h>
  #include <stdio.h>
  
  int main() {
    int csr = _mm_getcsr();
    printf("%x\n", csr);
    return 0;
  }


CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D69979/new/

https://reviews.llvm.org/D69979



_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to