Hi,

I deleted an 'f' halfway through a line when applying r238977. Not sure
how I managed it, but it was entirely my fault.

Fixed in the obvious way.

Thanks,
James

---
2016-02-08  James Greenhalgh  <james.greenha...@arm.com>

        * config/aarch64/arm_neon.h (vminnm_f64): Add back missing 'f' from
        __builtin_aarch64_fmindf.

diff --git a/gcc/config/aarch64/arm_neon.h b/gcc/config/aarch64/arm_neon.h
index fcdc977..d0e1fe7 100644
--- a/gcc/config/aarch64/arm_neon.h
+++ b/gcc/config/aarch64/arm_neon.h
@@ -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)) };
 }
 

Reply via email to