ifdef / define / endif can't be the first thing. So move that block down.

This commit is contained in:
matt 2011-06-16 04:38:21 +00:00
parent a7bfd4d42c
commit 9960ebcc16

View File

@ -1,4 +1,4 @@
# $NetBSD: genassym.cf,v 1.20 2011/06/16 03:54:40 matt Exp $
# $NetBSD: genassym.cf,v 1.21 2011/06/16 04:38:21 matt Exp $
#
# Copyright (C) 1995, 1996 Wolfgang Solfrank.
@ -51,10 +51,6 @@ include <machine/pmap.h>
include <powerpc/cpu.h>
include <powerpc/oea/cpufeat.h>
ifdef __HAVE_FAST_SOFTINTS
define __HAVE_FAST_SOFTINTS __HAVE_FAST_SOFTINTS
endif
define FRAMELEN FRAMELEN
define FRAME_TF offsetof(struct ktrapframe, ktf_tf)
define FRAME_R0 offsetof(struct ktrapframe, ktf_tf.tf_fixreg[0])
@ -216,6 +212,10 @@ define VREG_V31 offsetof(struct vreg, vreg[31][0])
define VREG_VRSAVE offsetof(struct vreg, vrsave)
define VREG_VSCR offsetof(struct vreg, vscr)
ifdef __HAVE_FAST_SOFTINTS
define __HAVE_FAST_SOFTINTS __HAVE_FAST_SOFTINTS
endif
define L_PCB offsetof(struct lwp, l_addr)
define L_CPU offsetof(struct lwp, l_cpu)
define L_MD_ASTPENDING offsetof(struct lwp, l_md.md_astpending)