Skip to content

Commit a407a75

Browse files
jgreenhalgh-armJames Greenhalgh
authored andcommitted
[AArch64] Fix parameters to vcvtx_high
* config/aarch64/arm_neon.h (vcvtx_high_f32_f64): Fix parameters. From-SVN: r202623
1 parent f77e2d2 commit a407a75

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

gcc/ChangeLog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2013-09-16 James Greenhalgh <[email protected]>
2+
3+
* config/aarch64/arm_neon.h
4+
(vcvtx_high_f32_f64): Fix parameters.
5+
16
2013-09-16 Jan-Benedict Glaw <[email protected]>
27

38
* config/alpha.c: Include tree-ssa.h.

gcc/config/aarch64/arm_neon.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5756,12 +5756,12 @@ vcvtx_f32_f64 (float64x2_t a)
57565756
}
57575757

57585758
__extension__ static __inline float32x4_t __attribute__ ((__always_inline__))
5759-
vcvtx_high_f32_f64 (float64x2_t a)
5759+
vcvtx_high_f32_f64 (float32x2_t a, float64x2_t b)
57605760
{
57615761
float32x4_t result;
57625762
__asm__ ("fcvtxn2 %0.4s,%1.2d"
57635763
: "=w"(result)
5764-
: "w"(a)
5764+
: "w" (b), "0"(a)
57655765
: /* No clobbers */);
57665766
return result;
57675767
}

0 commit comments

Comments
 (0)