diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2022-08-18 13:05:44 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2022-08-18 13:05:44 +0000 |
commit | 17443a10139efb41baba78a74cf9ec576c12ad42 (patch) | |
tree | 18c73a77c9be222b1bf39df682b876cda1bede35 /sys/arch/i386 | |
parent | fe09a74bbd0a21336ffb087036552c566c13fe9f (diff) |
repair printing of cpu class after machdep.c 1.652
ok daniel@ mlarkin@
Diffstat (limited to 'sys/arch/i386')
-rw-r--r-- | sys/arch/i386/i386/machdep.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/i386/i386/machdep.c b/sys/arch/i386/i386/machdep.c index e4cb15b4dc1..2a00b605675 100644 --- a/sys/arch/i386/i386/machdep.c +++ b/sys/arch/i386/i386/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.652 2022/08/15 04:17:50 daniel Exp $ */ +/* $OpenBSD: machdep.c,v 1.653 2022/08/18 13:05:43 jsg Exp $ */ /* $NetBSD: machdep.c,v 1.214 1996/11/10 03:16:17 thorpej Exp $ */ /*- @@ -509,6 +509,7 @@ const struct cpu_nocpuid_nameclass i386_nocpuid_cpus[] = { }; const char *classnames[] = { + "", "486", "586", "686" |