Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/powerpc/oea ifdef / define / endif can't be the fir...



details:   https://anonhg.NetBSD.org/src/rev/8d06a907a6b4
branches:  trunk
changeset: 766122:8d06a907a6b4
user:      matt <matt%NetBSD.org@localhost>
date:      Thu Jun 16 04:38:21 2011 +0000

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

diffstat:

 sys/arch/powerpc/oea/genassym.cf |  10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diffs (31 lines):

diff -r 1196d3ba2090 -r 8d06a907a6b4 sys/arch/powerpc/oea/genassym.cf
--- a/sys/arch/powerpc/oea/genassym.cf  Thu Jun 16 04:37:48 2011 +0000
+++ b/sys/arch/powerpc/oea/genassym.cf  Thu Jun 16 04:38:21 2011 +0000
@@ -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)



Home | Main Index | Thread Index | Old Index