Fix typo in glibc.tune.cpu name
authorSiddhesh Poyarekar <siddhesh@sourceware.org>
Sat, 1 Jul 2017 14:21:44 +0000 (19:51 +0530)
committerSiddhesh Poyarekar <siddhesh@sourceware.org>
Sat, 1 Jul 2017 14:21:44 +0000 (19:51 +0530)
ChangeLog
sysdeps/unix/sysv/linux/aarch64/cpu-features.c

index b6fe639..58ce877 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2017-07-01  Ramana Radhakrishnan  <ramana.gcc@googlemail.com>
+
+       * sysdeps/unix/sysv/aarch64/cpu-features.c (init_cpu_features):
+       Fix typo.
+
 2017-06-30  Gabriel F. T. Gomes  <gftg@linux.vnet.ibm.com>
 
        * include/math.h (__signbitf128): Define as hidden.
index 47c7d97..0275d11 100644 (file)
@@ -53,7 +53,7 @@ init_cpu_features (struct cpu_features *cpu_features)
 
 #if HAVE_TUNABLES
   /* Get the tunable override.  */
-  const char *mcpu = TUNABLE_GET (glibc, tune, mcpu, const char *, NULL);
+  const char *mcpu = TUNABLE_GET (glibc, tune, cpu, const char *, NULL);
   if (mcpu != NULL)
     midr = get_midr_from_mcpu (mcpu);
 #endif