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
This commit is contained in:
Brooks Davis 2015-05-28 22:06:05 +00:00
parent f3bb925153
commit c0f9cb13c5
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=283671

View File

@ -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 */