2007-07-27 Michael Snyder * aoutx.h (aout_link_add_symbols): Return if count is zero. Index: aoutx.h =================================================================== RCS file: /cvs/src/src/bfd/aoutx.h,v retrieving revision 1.68 diff -p -r1.68 aoutx.h *** aoutx.h 27 Jul 2007 19:04:39 -0000 1.68 --- aoutx.h 27 Jul 2007 21:59:03 -0000 *************** aout_link_add_symbols (bfd *abfd, struct *** 2951,2956 **** --- 2951,2959 ---- return FALSE; } + if (sym_count == 0) + return TRUE; /* Nothing to do. */ + /* We keep a list of the linker hash table entries that correspond to particular symbols. We could just look them up in the hash table, but keeping the list is more efficient. Perhaps this