chiark / gitweb /
eglibc (2.11.3-4+deb6u3) squeeze-lts; urgency=medium
[eglibc.git] / debian / patches / i386 / local-cmov.diff
1 # All lines beginning with `# DP:' are a description of the patch.
2 # DP: Description: Add CMOV to hwcap, for VIA C3 which is i686 class processor,
3 # DP:           but does not have 686 optional instruction CMOV.
4 # DP: Author: GOTO Masanori <gotom@debian.org>
5 # DP: Upstream status: Not submitted
6 # DP: Status Details: Not submitted
7 # DP: Date: 2003-02-21
8 # DP: Updated 2003-10-12 by dan@debian.org for TLS
9 # DP: Updated 2004-01-02 to fix building with newer patches by jb.
10 # DP: Updated 2005-01-02 to fix building with newer patches by gotom.
11
12 2005-01-02  GOTO Masanori  <gotom@debian.org>
13
14         * sysdeps/i386/dl-procinfo.h: Update to add CMOV for VIA C3 chip.
15
16 ---
17  sysdeps/i386/dl-procinfo.h |    2 +-
18  1 file changed, 1 insertion(+), 1 deletion(-)
19
20 --- a/sysdeps/i386/dl-procinfo.h
21 +++ b/sysdeps/i386/dl-procinfo.h
22 @@ -57,7 +57,7 @@
23    HWCAP_I386_AMD3D = 1 << 31,
24  
25    /* XXX Which others to add here?  */
26 -  HWCAP_IMPORTANT = (HWCAP_I386_XMM2)
27 +  HWCAP_IMPORTANT = (HWCAP_I386_CMOV | HWCAP_I386_XMM2)
28  
29  };
30