diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2005-08-20 00:34:00 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2005-08-20 00:34:00 +0000 |
commit | 398ac55cb9184bf7385528537f71525c7debec31 (patch) | |
tree | d8f5a258458b25dccf405621a9445b3f6f02404c /sys/arch/amd64/include/cpu.h | |
parent | 7cfd9446092e192a85a3ea0d5b1a3103b751739f (diff) |
Check for and report the presense of SSE3. This has started to appear
in AMD products with the arrival of the venice core.
ok deraadt@
Diffstat (limited to 'sys/arch/amd64/include/cpu.h')
-rw-r--r-- | sys/arch/amd64/include/cpu.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/amd64/include/cpu.h b/sys/arch/amd64/include/cpu.h index 54c4c795f37..49bccdf4d9b 100644 --- a/sys/arch/amd64/include/cpu.h +++ b/sys/arch/amd64/include/cpu.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cpu.h,v 1.12 2005/07/26 08:38:29 art Exp $ */ +/* $OpenBSD: cpu.h,v 1.13 2005/08/20 00:33:59 jsg Exp $ */ /* $NetBSD: cpu.h,v 1.1 2003/04/26 18:39:39 fvdl Exp $ */ /*- @@ -250,6 +250,7 @@ extern int biosbasemem; extern int biosextmem; extern int cpu; extern int cpu_feature; +extern int cpu_ecxfeature; extern int cpu_id; extern char cpu_vendor[]; extern int cpuid_level; |