[AArch64] Fix parameters to vcvtx_high

* config/aarch64/arm_neon.h
	(vcvtx_high_f32_f64): Fix parameters.

From-SVN: r202623
This commit is contained in:
James Greenhalgh 2013-09-16 09:45:43 +00:00 committed by James Greenhalgh
parent f77e2d2d47
commit a407a750a7
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2013-09-16 James Greenhalgh <james.greenhalgh@arm.com>
* config/aarch64/arm_neon.h
(vcvtx_high_f32_f64): Fix parameters.
2013-09-16 Jan-Benedict Glaw <jbglaw@lug-owl.de>
* config/alpha.c: Include tree-ssa.h.

View File

@ -5756,12 +5756,12 @@ vcvtx_f32_f64 (float64x2_t a)
}
__extension__ static __inline float32x4_t __attribute__ ((__always_inline__))
vcvtx_high_f32_f64 (float64x2_t a)
vcvtx_high_f32_f64 (float32x2_t a, float64x2_t b)
{
float32x4_t result;
__asm__ ("fcvtxn2 %0.4s,%1.2d"
: "=w"(result)
: "w"(a)
: "w" (b), "0"(a)
: /* No clobbers */);
return result;
}