[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:
parent
f77e2d2d47
commit
a407a750a7
@ -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>
|
2013-09-16 Jan-Benedict Glaw <jbglaw@lug-owl.de>
|
||||||
|
|
||||||
* config/alpha.c: Include tree-ssa.h.
|
* config/alpha.c: Include tree-ssa.h.
|
||||||
|
@ -5756,12 +5756,12 @@ vcvtx_f32_f64 (float64x2_t a)
|
|||||||
}
|
}
|
||||||
|
|
||||||
__extension__ static __inline float32x4_t __attribute__ ((__always_inline__))
|
__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;
|
float32x4_t result;
|
||||||
__asm__ ("fcvtxn2 %0.4s,%1.2d"
|
__asm__ ("fcvtxn2 %0.4s,%1.2d"
|
||||||
: "=w"(result)
|
: "=w"(result)
|
||||||
: "w"(a)
|
: "w" (b), "0"(a)
|
||||||
: /* No clobbers */);
|
: /* No clobbers */);
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user