From c0f9cb13c56b02081b48e0022c90ed9ef6b98814 Mon Sep 17 00:00:00 2001 From: Brooks Davis Date: Thu, 28 May 2015 22:06:05 +0000 Subject: Revert r102953 The bitfile padding was always unallocated on real-world FreeBSD systems and depended on the assumption that (abs(sizeof(long) - sizeof(char*)) <= 32). Differential Revision: https://reviews.freebsd.org/D2667 Reviewed by: eadler Sponsored by: DARPA, AFRL --- sys/sys/nlist_aout.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/sys/sys/nlist_aout.h b/sys/sys/nlist_aout.h index fc7a3c781c57..cb3dd8591252 100644 --- a/sys/sys/nlist_aout.h +++ b/sys/sys/nlist_aout.h @@ -56,8 +56,6 @@ struct nlist { } n_un; #else const char *n_name; /* symbol name (in memory) */ - int : 8 * (sizeof(long) > sizeof(char *) ? - sizeof(long) - sizeof(char *) : sizeof(char *) - sizeof(long)); #endif unsigned char n_type; /* type defines */ char n_other; /* ".type" and binding information */ -- cgit v1.2.3