[Patch AArch64 Obvious] Fix Bootstrap for my mistake in r238977
authorJames Greenhalgh <james.greenhalgh@arm.com>
Tue, 2 Aug 2016 13:55:03 +0000 (13:55 +0000)
committerJames Greenhalgh <jgreenhalgh@gcc.gnu.org>
Tue, 2 Aug 2016 13:55:03 +0000 (13:55 +0000)
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

gcc/ChangeLog
gcc/config/aarch64/arm_neon.h

index 7e23ba4da2dae36ca1c677bfe8a4f872fa9b65ed..a995aa75bea161203aa6ffb385fae802bb36d36f 100644 (file)
@@ -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
index fcdc977d6316284199a30d2b50d67c8360a13ec9..d0e1fe7e1b113c2d9f2b7966c9b3bd6956e4152f 100644 (file)
@@ -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)) };
 }