]> sourceware.org Git - glibc.git/commitdiff
x86: Rename get_common_indeces to get_common_indices
authorH.J. Lu <hjl.tools@gmail.com>
Wed, 1 Aug 2018 11:57:34 +0000 (04:57 -0700)
committerH.J. Lu <hjl.tools@gmail.com>
Wed, 1 Aug 2018 11:57:50 +0000 (04:57 -0700)
Reviewed-by: Carlos O'Donell <carlos@redhat.com>
* sysdeps/x86/cpu-features.c (get_common_indeces): Renamed to
...
(get_common_indices): This.
(init_cpu_features): Updated.

ChangeLog
sysdeps/x86/cpu-features.c

index c724d7dadc2cae6d658a59c144a318d4f98d4afd..20d61ee5aa5ba7e228f90f7a98ff62bfd457af48 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2018-08-01  H.J. Lu  <hongjiu.lu@intel.com>
+
+       * sysdeps/x86/cpu-features.c (get_common_indeces): Renamed to
+       ...
+       (get_common_indices): This.
+       (init_cpu_features): Updated.
+
 2018-08-01  Joseph Myers  <joseph@codesourcery.com>
 
        * sysdeps/generic/math-tests-snan-payload.h: New file.
index ea0b64fdb962a934c2950d37dfe7ba061aa00ccf..51642f8b6a0dc87cd3276d897692d21645999634 100644 (file)
@@ -57,7 +57,7 @@ get_extended_indices (struct cpu_features *cpu_features)
 }
 
 static void
-get_common_indeces (struct cpu_features *cpu_features,
+get_common_indices (struct cpu_features *cpu_features,
                    unsigned int *family, unsigned int *model,
                    unsigned int *extended_model, unsigned int *stepping)
 {
@@ -235,7 +235,7 @@ init_cpu_features (struct cpu_features *cpu_features)
 
       kind = arch_kind_intel;
 
-      get_common_indeces (cpu_features, &family, &model, &extended_model,
+      get_common_indices (cpu_features, &family, &model, &extended_model,
                          &stepping);
 
       get_extended_indices (cpu_features);
@@ -351,7 +351,7 @@ init_cpu_features (struct cpu_features *cpu_features)
 
       kind = arch_kind_amd;
 
-      get_common_indeces (cpu_features, &family, &model, &extended_model,
+      get_common_indices (cpu_features, &family, &model, &extended_model,
                          &stepping);
 
       get_extended_indices (cpu_features);
@@ -388,7 +388,7 @@ init_cpu_features (struct cpu_features *cpu_features)
   else
     {
       kind = arch_kind_other;
-      get_common_indeces (cpu_features, NULL, NULL, NULL, NULL);
+      get_common_indices (cpu_features, NULL, NULL, NULL, NULL);
     }
 
   /* Support i586 if CX8 is available.  */
This page took 0.10226 seconds and 5 git commands to generate.