[Patch AArch64 Obvious] Fix Bootstrap for my mistake in r238977
I deleted an 'f' halfway through a line when applying r238977. Not sure how I managed it, but entirely my fault. gcc/ * config/aarch64/arm_neon.h (vminnm_f64): Add back missing 'f' from __builtin_aarch64_fmindf. From-SVN: r238989
This commit is contained in:
parent
807bd0963e
commit
1f19ed0247
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2016-02-08 James Greenhalgh <james.greenhalgh@arm.com>
|
||||
|
||||
* config/aarch64/arm_neon.h (vminnm_f64): Add back missing 'f' from
|
||||
__builtin_aarch64_fmindf.
|
||||
|
||||
2016-08-02 Bin Cheng <bin.cheng@arm.com>
|
||||
|
||||
PR tree-optimization/34114
|
||||
|
|
|
@ -17950,7 +17950,7 @@ __extension__ static __inline float64x1_t __attribute__ ((__always_inline__))
|
|||
vminnm_f64 (float64x1_t __a, float64x1_t __b)
|
||||
{
|
||||
return (float64x1_t)
|
||||
{ __builtin_aarch64_fmind (vget_lane_f64 (__a, 0),
|
||||
{ __builtin_aarch64_fmindf (vget_lane_f64 (__a, 0),
|
||||
vget_lane_f64 (__b, 0)) };
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue