mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-03-22 21:31:19 +08:00
[PATCH] rs6000: vec_rlnm fix to make builtin work according to ABI
gcc/ChangeLog 2020-03-25 Carl Love <cel@us.ibm.com> PR target/93819 * gcc/config/rs6000/altivec.h: Fixed swapped arguments for vec_rlnm define.
This commit is contained in:
parent
9673d11ec5
commit
e97929e20b
@ -182,7 +182,7 @@
|
||||
#define vec_recipdiv __builtin_vec_recipdiv
|
||||
#define vec_rlmi __builtin_vec_rlmi
|
||||
#define vec_vrlnm __builtin_vec_rlnm
|
||||
#define vec_rlnm(a,b,c) (__builtin_vec_rlnm((a),((b)<<8)|(c)))
|
||||
#define vec_rlnm(a,b,c) (__builtin_vec_rlnm((a),((c)<<8)|(b)))
|
||||
#define vec_rsqrt __builtin_vec_rsqrt
|
||||
#define vec_rsqrte __builtin_vec_rsqrte
|
||||
#define vec_signed __builtin_vec_vsigned
|
||||
|
Loading…
x
Reference in New Issue
Block a user