diff options
author | Alan Modra <amodra@gmail.com> | 2004-03-27 11:36:09 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2004-03-27 11:36:09 +0000 |
commit | 53fbb48a80baa210bacb332723105e3de171b37c (patch) | |
tree | 94570fc87e7dda6edbcb3bbc5bf6120a1a7c8020 /gas/config | |
parent | 7a945db630e5ead57b6adcb95624dff2dd56dcff (diff) | |
download | gdb-53fbb48a80baa210bacb332723105e3de171b37c.zip gdb-53fbb48a80baa210bacb332723105e3de171b37c.tar.gz gdb-53fbb48a80baa210bacb332723105e3de171b37c.tar.bz2 |
* config/obj-aout.c (obj_aout_type): Remove #ifdef BFD_ASSEMBLER code.
Diffstat (limited to 'gas/config')
-rw-r--r-- | gas/config/obj-aout.c | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/gas/config/obj-aout.c b/gas/config/obj-aout.c index 6e5fd29..74e52a5 100644 --- a/gas/config/obj-aout.c +++ b/gas/config/obj-aout.c @@ -1,6 +1,6 @@ /* a.out object file format Copyright 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1999, 2000, - 2001, 2002 Free Software Foundation, Inc. + 2001, 2002, 2003, 2004 Free Software Foundation, Inc. This file is part of GAS, the GNU Assembler. @@ -419,17 +419,9 @@ obj_aout_type (ignore) { ++input_line_pointer; if (strncmp (input_line_pointer, "object", 6) == 0) -#ifdef BFD_ASSEMBLER - aout_symbol (symbol_get_bfdsym (sym))->other = 1; -#else - S_SET_OTHER (sym, 1); -#endif + S_SET_OTHER (sym, 1); else if (strncmp (input_line_pointer, "function", 8) == 0) -#ifdef BFD_ASSEMBLER - aout_symbol (symbol_get_bfdsym (sym))->other = 2; -#else - S_SET_OTHER (sym, 2); -#endif + S_SET_OTHER (sym, 2); } } |