Module Name: src
Committed By: matt
Date: Thu Mar 27 01:04:39 UTC 2014
Modified Files:
src/sys/arch/arm/include [matt-nb5-mips64]: param.h
Log Message:
Make ALIGNBYTES use __ALIGNBYTES
To generate a diff of this commit:
cvs rdiff -u -r1.12.12.2 -r1.12.12.3 src/sys/arch/arm/include/param.h
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/arm/include/param.h
diff -u src/sys/arch/arm/include/param.h:1.12.12.2 src/sys/arch/arm/include/param.h:1.12.12.3
--- src/sys/arch/arm/include/param.h:1.12.12.2 Sat Feb 15 16:30:23 2014
+++ src/sys/arch/arm/include/param.h Thu Mar 27 01:04:39 2014
@@ -1,4 +1,4 @@
-/* $NetBSD: param.h,v 1.12.12.2 2014/02/15 16:30:23 matt Exp $ */
+/* $NetBSD: param.h,v 1.12.12.3 2014/03/27 01:04:39 matt Exp $ */
/*
* Copyright (c) 1994,1995 Mark Brinicombe.
@@ -148,7 +148,7 @@
#define MID_MACHINE MID_ARM6
/* ARM-specific macro to align a stack pointer (downwards). */
-#define ALIGNBYTES 3
+#define ALIGNBYTES (__ALIGNBYTES + 1)
#define ALIGN(p) (((uintptr_t)(p) + ALIGNBYTES) & ~ALIGNBYTES)
#define ALIGNED_POINTER(p,t) (((uintptr_t)(p) % sizeof(t)) == 0)
#define STACKALIGNBYTES (8 - 1)