From b5b674f2272d340976be208944d42a5107da180c Mon Sep 17 00:00:00 2001 From: ragge Date: Sat, 15 Mar 1997 15:08:23 +0000 Subject: [PATCH] Do not use inline functions in boot blocks. Some CPUs doesn't have all instructions. --- sys/arch/vax/include/macros.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/arch/vax/include/macros.h b/sys/arch/vax/include/macros.h index 1d863e915a4d..c196ad8047fd 100644 --- a/sys/arch/vax/include/macros.h +++ b/sys/arch/vax/include/macros.h @@ -1,4 +1,4 @@ -/* $NetBSD: macros.h,v 1.10 1997/01/11 11:07:52 ragge Exp $ */ +/* $NetBSD: macros.h,v 1.11 1997/03/15 15:08:23 ragge Exp $ */ /* * Copyright (c) 1994 Ludd, University of Lule}, Sweden. @@ -32,8 +32,8 @@ /* All bugs are subject to removal without further notice */ -#if !defined(_VAX_MACROS_H_) && (defined(STANDALONE) || \ - (!defined(_LOCORE) && defined(_VAX_INLINE_))) +#if !defined(_VAX_MACROS_H_) && !defined(STANDALONE) && \ + (!defined(_LOCORE) && defined(_VAX_INLINE_)) #define _VAX_MACROS_H_ /* Here general macros are supposed to be stored */