From 5c19c1d909c77dfdaefe52246ca4f7acbd496f5d Mon Sep 17 00:00:00 2001 From: pk Date: Mon, 20 Jun 1994 07:19:31 +0000 Subject: [PATCH] squish some weird code, which is in the way. --- gnu/usr.bin/gas/config/obj-aout.c | 9 --------- 1 file changed, 9 deletions(-) diff --git a/gnu/usr.bin/gas/config/obj-aout.c b/gnu/usr.bin/gas/config/obj-aout.c index c20544f760c1..02e646fc26a5 100644 --- a/gnu/usr.bin/gas/config/obj-aout.c +++ b/gnu/usr.bin/gas/config/obj-aout.c @@ -142,17 +142,8 @@ object_headers *headers; { tc_headers_hook(headers); -#if defined(OLD_GAS) && defined(TC_I386) - /* I think that this old behaviour was wrong, but this lets me compare to the - previous gas. xoxorich. */ - md_number_to_chars(*where, headers->header.a_info, 2); - *where += 2; - md_number_to_chars(*where, 0, 2); - *where += 2; -#else /* not (TC_I386 && OLD_GAS) */ md_number_to_chars(*where, headers->header.a_info, sizeof(headers->header.a_info)); *where += sizeof(headers->header.a_info); -#endif /* not (TC_I386 && OLD_GAS) */ #ifdef TE_HPUX md_number_to_chars(*where, 0, 4); *where += 4; /* a_spare1 */