[AArch64] obvious - Fix parameter to vrsqrte_f64

gcc/

	* config/aarch64/arm_neon.h (vrsqrte_f64): Fix parameter type.

From-SVN: r202407
This commit is contained in:
James Greenhalgh 2013-09-09 15:16:03 +00:00 committed by James Greenhalgh
parent f43245d188
commit 552d99fe88
2 changed files with 8 additions and 4 deletions

View File

@ -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.

View File

@ -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 */);