diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2021-02-02 06:49:02 -0800 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2021-02-22 04:31:51 -0800 |
commit | ba230b6387fc0ccba60d2ff6759f7e326ba7bf3e (patch) | |
tree | b1cea7eb3a415ea0d12fb24b1d38fb2a66b9a1d8 /sysdeps | |
parent | ebbb8c9f64c3486603ef4ccee4dd2a5574e41039 (diff) | |
download | glibc-ba230b6387fc0ccba60d2ff6759f7e326ba7bf3e.tar.gz glibc-ba230b6387fc0ccba60d2ff6759f7e326ba7bf3e.tar.xz glibc-ba230b6387fc0ccba60d2ff6759f7e326ba7bf3e.zip |
<bits/platform/x86.h>: Correct x86_cpu_TBM
x86_cpu_TBM should be x86_cpu_index_80000001_ecx + 21.
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/x86/bits/platform/x86.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/x86/bits/platform/x86.h b/sysdeps/x86/bits/platform/x86.h index c4850fc3cb..fe08d8a1b6 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) |