summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2004-07-02 23:22:59 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2004-07-02 23:22:59 +0000
commitaa6d6d1eaaec039c92eac72a66fcb1c67e6118e1 (patch)
tree4a322ae59631dea899be92b06c13fd3616127f62
parent437842e5ed5cfc39e32bf7eacf513cdcc9dba2f9 (diff)
move into #ifdef; various people
-rw-r--r--sys/arch/i386/i386/machdep.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/i386/i386/machdep.c b/sys/arch/i386/i386/machdep.c
index 89fdc3b9c6d..4293f499d84 100644
--- a/sys/arch/i386/i386/machdep.c
+++ b/sys/arch/i386/i386/machdep.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: machdep.c,v 1.303 2004/07/02 16:29:55 niklas Exp $ */
+/* $OpenBSD: machdep.c,v 1.304 2004/07/02 23:22:58 deraadt Exp $ */
/* $NetBSD: machdep.c,v 1.214 1996/11/10 03:16:17 thorpej Exp $ */
/*-
@@ -1143,8 +1143,8 @@ cyrix3_cpu_setup(cpu_device, model, step)
const char *cpu_device;
int model, step;
{
- u_int64_t msreg;
#if defined(I686_CPU)
+ u_int64_t msreg;
unsigned int val;
#if !defined(SMALL_KERNEL)
extern void (*pagezero)(void *, size_t);