Module Name: src
Committed By: matt
Date: Thu Jun 16 04:38:21 UTC 2011
Modified Files:
src/sys/arch/powerpc/oea: genassym.cf
Log Message:
ifdef / define / endif can't be the first thing. So move that block down.
To generate a diff of this commit:
cvs rdiff -u -r1.20 -r1.21 src/sys/arch/powerpc/oea/genassym.cf
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/powerpc/oea/genassym.cf
diff -u src/sys/arch/powerpc/oea/genassym.cf:1.20 src/sys/arch/powerpc/oea/genassym.cf:1.21
--- src/sys/arch/powerpc/oea/genassym.cf:1.20 Thu Jun 16 03:54:40 2011
+++ src/sys/arch/powerpc/oea/genassym.cf Thu Jun 16 04:38:21 2011
@@ -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 <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_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)