diff options
author | YLK <yilink10@gmail.com> | 2025-03-24 22:04:21 +0800 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2025-03-31 10:54:52 -0300 |
commit | dbb2880e61bf2b2906a40ed00181a831d3a65798 (patch) | |
tree | df1763753113cce92f9364c626bd6717b75cc70d | |
parent | 87b5a759f48a7d2bec3a8c837a1fc9fd8419f0ad (diff) | |
download | glibc-dbb2880e61bf2b2906a40ed00181a831d3a65798.zip glibc-dbb2880e61bf2b2906a40ed00181a831d3a65798.tar.gz glibc-dbb2880e61bf2b2906a40ed00181a831d3a65798.tar.bz2 |
Fix typo in comment
-rw-r--r-- | sysdeps/loongarch/cpu-tunables.c | 2 | ||||
-rw-r--r-- | sysdeps/x86/cpu-tunables.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/loongarch/cpu-tunables.c b/sysdeps/loongarch/cpu-tunables.c index 8b87e58..cad2e26 100644 --- a/sysdeps/loongarch/cpu-tunables.c +++ b/sysdeps/loongarch/cpu-tunables.c @@ -50,7 +50,7 @@ TUNABLE_CALLBACK (set_hwcaps) (tunable_val_t *valp) GLIBC_TUNABLES=glibc.cpu.hwcaps=-xxx,yyy,-zzz,.... can be used to enable CPU/ARCH feature yyy, disable CPU/ARCH feature - yyy and zzz, where the feature name is case-sensitive and has to + xxx and zzz, where the feature name is case-sensitive and has to match the ones in cpu-features.h. It can be used by glibc developers to tune for a new processor or override the IFUNC selection to improve performance for a particular workload. diff --git a/sysdeps/x86/cpu-tunables.c b/sysdeps/x86/cpu-tunables.c index d692e0e..74cd5b9 100644 --- a/sysdeps/x86/cpu-tunables.c +++ b/sysdeps/x86/cpu-tunables.c @@ -96,7 +96,7 @@ TUNABLE_CALLBACK (set_hwcaps) (tunable_val_t *valp) GLIBC_TUNABLES=glibc.cpu.hwcaps=-xxx,yyy,-zzz,.... can be used to enable CPU/ARCH feature yyy, disable CPU/ARCH feature - yyy and zzz, where the feature name is case-sensitive and has to + xxx and zzz, where the feature name is case-sensitive and has to match the ones in cpu-features.h. It can be used by glibc developers to tune for a new processor or override the IFUNC selection to improve performance for a particular workload. |