]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
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 b6fe639d561d4d310b9ee0949b623f43ee1aa311..58ce87749e0c1583772efd64202c5f34393e5dfd 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 47c7d971852f1b7db43d3eae9b252485c565d21d..0275d11c7fa5cba02f3173db25a8a02993e92b7e 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