From 478da56c11fb128e2dc9680ad6e17325a65130fb Mon Sep 17 00:00:00 2001 From: peter Date: Mon, 23 Sep 2002 05:55:10 +0000 Subject: At great personal risk, add a __packed and __aligned(x) define that expand to __attribute__((packed)) and __attribute__((aligned(x))) respectively. Replace the handful of gcc-ism's that use __attribute__((aligned(16))) etc around the kernel with __aligned(16). There are over 400 __attribute__((packed)) to deal with, that can come later. I just want to use __packed in new code rather than add more gcc-ism's. --- sys/i386/include/npx.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/i386') diff --git a/sys/i386/include/npx.h b/sys/i386/include/npx.h index 0b66265..8e0f9bc 100644 --- a/sys/i386/include/npx.h +++ b/sys/i386/include/npx.h @@ -113,7 +113,7 @@ struct savexmm { } sv_fp[8]; struct xmmacc sv_xmm[8]; u_char sv_pad[224]; -} __attribute__((aligned(16))); +} __aligned(16); union savefpu { struct save87 sv_87; -- cgit v1.1