[Bug target/81941] Rejects intrinsic use

2019-04-11 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=81941

Richard Biener  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
   Last reconfirmed||2019-04-11
 Ever confirmed|0   |1

--- Comment #2 from Richard Biener  ---
Reconfirmed.

[Bug target/81941] Rejects intrinsic use

2017-08-23 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=81941

--- Comment #1 from Richard Biener  ---
Alternatively:

> gcc-7 -S t.c -m32 -mno-sse 
In file included from t.c:1:0:
t.c: In function ‘foo’:
/usr/lib64/gcc/x86_64-suse-linux/7/include/xmmintrin.h:932:1: error: inlining
failed in call to always_inline ‘_mm_loadu_ps’: target specific option mismatch
 _mm_loadu_ps (float const *__P)
 ^~~~
t.c:5:23: note: called from here
   volatile __m128 y = _mm_loadu_ps (x);
   ^~~~

vs. accepted:

> gcc-7 -S t.c -mno-sse 
>