diff options
author | James Greenhalgh <james.greenhalgh@arm.com> | 2013-09-09 15:16:03 +0000 |
---|---|---|
committer | James Greenhalgh <jgreenhalgh@gcc.gnu.org> | 2013-09-09 15:16:03 +0000 |
commit | 552d99fe881c262ec96235e9e8f00fc54809f458 (patch) | |
tree | f21b8db53b5f1968a106a2631da106ce9f7055d9 /gcc | |
parent | f43245d1882a94f36312cefdceca02bd7bfb413e (diff) | |
download | gcc-552d99fe881c262ec96235e9e8f00fc54809f458.zip gcc-552d99fe881c262ec96235e9e8f00fc54809f458.tar.gz gcc-552d99fe881c262ec96235e9e8f00fc54809f458.tar.bz2 |
[AArch64] obvious - Fix parameter to vrsqrte_f64
gcc/
* config/aarch64/arm_neon.h (vrsqrte_f64): Fix parameter type.
From-SVN: r202407
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/aarch64/arm_neon.h | 8 |
2 files changed, 8 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 04a9347..3edd100 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2013-09-09 James Greenhalgh <james.greenhalgh@arm.com> + + * config/aarch64/arm_neon.h (vrsqrte_f64): Fix parameter type. + 2013-09-09 Uros Bizjak <ubizjak@gmail.com> * ipa-prop.c (ipa_modify_call_arguments): Initialize deref_align. diff --git a/gcc/config/aarch64/arm_neon.h b/gcc/config/aarch64/arm_neon.h index 521b7e8..c7e882a 100644 --- a/gcc/config/aarch64/arm_neon.h +++ b/gcc/config/aarch64/arm_neon.h @@ -12764,11 +12764,11 @@ vrsqrte_f32 (float32x2_t a) return result; } -__extension__ static __inline float64x2_t __attribute__ ((__always_inline__)) -vrsqrte_f64 (float64x2_t a) +__extension__ static __inline float64x1_t __attribute__ ((__always_inline__)) +vrsqrte_f64 (float64x1_t a) { - float64x2_t result; - __asm__ ("frsqrte %0.2d,%1.2d" + float64x1_t result; + __asm__ ("frsqrte %d0,%d1" : "=w"(result) : "w"(a) : /* No clobbers */); |