From: H.J. Lu Date: Tue, 2 Feb 2021 14:49:02 +0000 (-0800) Subject: : Correct x86_cpu_TBM X-Git-Tag: glibc-2.34~923 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ba230b6387fc0ccba60d2ff6759f7e326ba7bf3e;p=thirdparty%2Fglibc.git : Correct x86_cpu_TBM x86_cpu_TBM should be x86_cpu_index_80000001_ecx + 21. --- diff --git a/sysdeps/x86/bits/platform/x86.h b/sysdeps/x86/bits/platform/x86.h index c4850fc3cbe..fe08d8a1b6d 100644 --- a/sysdeps/x86/bits/platform/x86.h +++ b/sysdeps/x86/bits/platform/x86.h @@ -245,7 +245,7 @@ enum x86_cpu_XOP = x86_cpu_index_80000001_ecx + 11, x86_cpu_LWP = x86_cpu_index_80000001_ecx + 15, x86_cpu_FMA4 = x86_cpu_index_80000001_ecx + 16, - x86_cpu_TBM = x86_cpu_index_80000001_ecx + 20, + x86_cpu_TBM = x86_cpu_index_80000001_ecx + 21, x86_cpu_index_80000001_edx = (CPUID_INDEX_80000001 * 8 * 4 * sizeof (unsigned int)