aboutsummaryrefslogtreecommitdiff
path: root/sys/sys
diff options
context:
space:
mode:
authorBrooks Davis <brooks@FreeBSD.org>2015-05-28 22:06:05 +0000
committerBrooks Davis <brooks@FreeBSD.org>2015-05-28 22:06:05 +0000
commitc0f9cb13c56b02081b48e0022c90ed9ef6b98814 (patch)
tree854b6759a29e6f82a0d3e9a10e1733cceb6c61dd /sys/sys
parentf3bb92515317f9b66fca73deca375a79d49dc54a (diff)
downloadsrc-c0f9cb13c56b02081b48e0022c90ed9ef6b98814.tar.gz
src-c0f9cb13c56b02081b48e0022c90ed9ef6b98814.zip
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
Notes
Notes: svn path=/head/; revision=283671
Diffstat (limited to 'sys/sys')
-rw-r--r--sys/sys/nlist_aout.h2
1 files changed, 0 insertions, 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 */