From ec3e41d6fde92a5ae718de535eb0fede85380886 Mon Sep 17 00:00:00 2001 From: "Thordur I. Bjornsson" Date: Wed, 16 May 2007 19:37:07 +0000 Subject: splassert_ctl defaults to 1 now, so dont wrap the checks for splassert_ctl > 0 in __predict_false(). ok deraadt@ --- sys/arch/vax/include/intr.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys/arch/vax') diff --git a/sys/arch/vax/include/intr.h b/sys/arch/vax/include/intr.h index 13f53ac4a51..a3a3e76005b 100644 --- a/sys/arch/vax/include/intr.h +++ b/sys/arch/vax/include/intr.h @@ -1,4 +1,4 @@ -/* $OpenBSD: intr.h,v 1.7 2007/05/16 05:19:13 miod Exp $ */ +/* $OpenBSD: intr.h,v 1.8 2007/05/16 19:37:06 thib Exp $ */ /* $NetBSD: intr.h,v 1.1 1998/08/18 23:55:00 matt Exp $ */ /* @@ -111,7 +111,7 @@ void splassert_fail(int, int, const char *); extern int splassert_ctl; void splassert_check(int, const char *); #define splassert(__wantipl) do { \ - if (__predict_false(splassert_ctl > 0)) { \ + if (splassert_ctl > 0) { \ splassert_check(__wantipl, __func__); \ } \ } while (0) -- cgit v1.2.3