Accept -with arguments.
[deliverable/binutils-gdb.git] / gas / ChangeLog
CommitLineData
9d76a195
KR
1Mon Jan 4 05:17:26 1993 Ken Raeburn (raeburn@cygnus.com)
2
3 * read.c (s_data): Always use "data_section", since it'll map to
4 SEG_DATA or SEG_E1 if needed.
5 (s_lcomm): Likewise with bss_section.
6 (s_fill): Use memset, not bzero.
7
8Thu Dec 31 04:29:27 1992 Ken Raeburn (raeburn@kr-pc.cygnus.com)
9
10 * read.c: Deleted some code under "#ifdef DONTDEF" that was for
11 handling GDB symbol table data.
12
13 * config/obj-aout.h (segment_name): Delete definition.
14 (seg_name): Delete declaration.
15 * config/obj-bout.h (segment_name, seg_name): Ditto.
16 * config/obj-vms.h (segment_name, seg_name): Ditto.
17 * config/obj-coff.h (segment_name): Ditto.
18 * config/obj-coffbfd.h (segment_name): Ditto.
19
20 * Changes for BFD_ASSEMBLER:
21 * obj.h (obj_crawl_symbol_chain): Declare only if not
22 BFD_ASSEMBLER.
23 (obj_header_append, obj_pre_write_hook): Ditto.
24 * as.h (stdoutput): New var, defined only if BFD_ASSEMBLER.
25 (segT) [BFD_ASSEMBLER]: New typedef for "asection *".
26 (segment_name) If BFD_ASSEMBLER, look up BFD section name;
27 otherwise, use seg_name array.
28 (seg_name): Declare only if not BFD_ASSEMBLER.
29 (section_alignment): Declare only if not BFD_ASSEMBLER.
30 (big_section, reg_section, pass1_section, diff_section,
31 absent_section, text_section, data_section, bss_section): If
32 BFD_ASSEMBLER, declare as variables; otherwise, declare as macros,
33 mapping to segT enum values.
34 (tc_aout_fix_to_chars, next_object_file_charP): Force parse errors
35 if these are used or defined, if BFD_ASSEMBLER.
36 (subseg_set, subseg_new) [BFD_ASSEMBLER]: Functionality of old
37 subseg_new split into two functions.
38 (SEG_NORMAL): For BFD_ASSEMBLER, always return true, for now.
39
40 * as.h (volatile): Don't define if already defined.
41 (had_errors, had_warnings): Provide prototypes for ANSI C even if
42 NO_STDARG.
43 (as_bad, as_fatal, as_tsktsk, as_warn): For GNU C version 2,
44 declare with format attribute for -Wformat checking.
45
85825401
ILT
46Wed Dec 30 10:18:57 1992 Ian Lance Taylor (ian@cygnus.com)
47
48 * app.c, config/tc-*.c: Don't include read.h, since it is already
49 included by as.h.
50
51 * These are based on patches from Minh Tran-le
52 <mtranle@paris.intellicorp.com>.
53 * configure.in (i[34]86-ibm-aix*): Accept i486 for host. Use
54 obj_format coffbfd and gas_target i386coff for target.
55 (i[34]86-*-isc*): New host (uses sysv).
56 * config/i386aix.mt: Removed (no longer used).
57 * config/mh-i386aix (RANLIB): Use true rather than /bin/true.
58 (MINUS_G): Removed.
59 (LDFLAGS): Added, defined as -shlib.
60 * config/te-i386aix.h (REVERSE_SORT_RELOCS): Undefine.
61 * config/te-sco386.h (LOCAL_LABEL): Don't define.
62 (DOT_LABEL_PREFIX): Define.
63 * expr.c (operand): If DOT_LABEL_PREFIX, use .L0\001 as a label
64 name rather than L0\001.
65 * read.c (s_lcomm): Make a frag in SEG_BSS rather than using
66 local_bss_counter.
67 * symbols.c, symbols.h (local_bss_counter): Removed.
68 * write.c (write_object_file): bss no longer uses
69 local_bss_counter. Pass correct data and bss size to
70 VMS_write_object_file.
71 * config/obj-vms.c (VMS_write_object_file): Accept bss size as
72 argument, rather than using local_bss_counter.
73 * config/tc-m88k.c (s_bss): Don't use local_bss_counter.
74 * config/tc-sparc.c (s_reserve): Don't use local_bss_counter.
75 * config/obj-coffbfd.c (had_lineno, had_reloc): Removed.
76 (size_section): Restored sanity check.
77 (do_relocs_for): Base section address on s_paddr rather than
78 computing it. Adjust a29k R_IHIHALF special case to account for
79 section paddr (used to require paddr to be zero). If there are no
80 reclos, set s_relptr to 0. Set relocation size in object_headers.
81 (fill_section): Always set s_vaddr here, removing
82 ZERO_BASED_SEGMENTS case. Force s_scnptr for bss to 0. Don't set
83 NOLOAD for i386 .bss, because it confuses the SVR3 native linker.
84 Set STYP_INFO for .comment.
85 (coff_header_append): Use object headers and H_{SET,GET}_* macros.
86 Make aouthdr writing depend on OBJ_COFF_OMIT_OPTIONAL_HEADER.
87 (crawl_symbols): Handle 8 character section name correctly. Use
88 H_{SET,GET}_* macros.
89 (do_linenos_for): Set lineno size in object_headers.
90 (write_object_file): Use H_{SET,GET}_* macros. Don't bother to
91 set s_vaddr here. If string_byte_count remains 4, set it back to
92 0, and only write strings out if there are some. Call
93 fill_section before do_relocs_for and do_linenos_for.
94 (obj_coff_section): Handle optional quoted second argument giving
95 section characteristics.
96 (obj_coff_bss): Added to handle .bss.
97 (obj_coff_ident): Added to handle .ident (puts string in .comment
98 section).
99 (obj_coff_lcomm): Put common symbols in .bss, not .data.
100 (fixup_mdeps): Change to segment. Call frag_wane after
101 md_convert_frag.
102 (fixup_segment): Explicitly check S_IS_COMMON before making 386
103 adjustment (already happened only for common symbols, but this is
104 clearer).
105 * config/obj-coffbfd.h (OBJ_COFF_OMIT_OPTIONAL_HEADER): Define.
106 * config/tc-i386.c (s_bss): Don't use if I386COFF.
107 (md_pseudo_table): Ignore .optim and .noopt.
108 (tc_coff_sizemachdep): New function.
109 * config/tc-i386.h (REVERSE_SORT_RELOCS): Undef, for SVR3
110 compatibility.
111 (LOCAL_LABEL): Removed definition.
112 (DOT_LABEL_PREFIX): Defined.
113
4539aa02
KR
114Mon Dec 28 10:32:05 1992 Ken Raeburn (raeburn@cygnus.com)
115
6d331d71
KR
116 * app.c (app_push): Use memcpy, not bcopy.
117 (do_scrub_next_char): For \", return " not '.
118 (symbol_chars): Now const.
119
4539aa02
KR
120 * expr.c (operand): If not LOCAL_LABELS_FB, don't look for "0f"
121 and "0b". If LOCAL_LABELS_DOLLAR, check for "0$".
122
123 * config/obj-coff.h: Don't use #elif.
124
125 * config/ho-sunos.h: Don't include sys/stdtypes.h; 4.0.3 doesn't
126 have it. (Reported by Noah Friedman, friedman@gnu.ai.mit.edu.)
127
3eb802b5
ILT
128Wed Dec 16 12:12:33 1992 Ian Lance Taylor (ian@cygnus.com)
129
130 * write.c, obj-ieee.c: don't define SUB_SEGMENT_ALIGN if it is
131 already defined.
132
be06bdcd
SC
133Tue Dec 15 12:40:11 1992 Steve Chamberlain (sac@thepub.cygnus.com)
134
135 * app.c (do_scrub_begin): allow single quote strings if so
136 configured.
137
138 * config/*z8k*: checkpoint
139
140Sun Dec 13 00:04:38 1992 Ian Lance Taylor (ian@cygnus.com)
141
142 * read.c (read_a_source_file): avoid calling xmalloc (0).
143
016e0d42
ILT
144Sat Dec 12 15:26:34 1992 Ian Lance Taylor (ian@cygnus.com)
145
146 * listing.c: Call xmalloc, not malloc; don't declare malloc.
147
148 * Changes to support SCO 3.2v4:
149 * read.c (s_align_bytes, s_align_ptwo): If not SEG_DATA or
150 SEG_BSS, fill with NOP_OPCODE.
151 * config/i386coff.mt: Add opcode/i386.h to TARG_CPU_DEPENDENTS.
152 * config/obj-coffbfd.c (do_relocs_for): Increment addr even if not
153 using ZERO_BASED_SEGMENTS.
154 (fill_section): If ZERO_BASED_SEGMENTS, set segment addresses, but
155 never set segment address for SEG_E2 (.bss) and don't write out
156 SEG_E2 contents. Set .init and .fini sections to STYP_TEXT.
157 (obj_coff_endef): Don't merge labels or symbols awaiting forward
158 definitions, and don't merge tags with non-tags. Check for .bf
159 rather than just checking whether the second character is b and
160 the third character is f.
161 (obj_coff_val): gcc can generate values which we don't handle
162 correctly; discard information for now, since it only affects the
163 debugging information.
164 (tag_find_or_name): Don't insert tags in the symbol table.
165 (yank_symbols): Don't merge labels.
166 (write_object_file): Don't define SUB_SEGMENT_ALIGN if it is
167 already defined. Fill subsegments with NOP_OPCODE, not 0. Don't
168 set segment address if ZERO_BASED_SEGMENTS.
169 (obj_coff_section): Accept and ignore a trailing quoted string, as
170 used in AT&T i386 syntax.
171 (fixup_segment): Take segment as argument. On the i386, adjust PC
172 relative addends by the segment vaddr.
173 * tc-i386.h: Define SUB_SEGMENT_ALIGN.
174 * tc-a29k.h: Define ZERO_BASED_SEGMENTS.
175 * tc-i386.c: (i386_operand): If I386COFF, accept any segment type.
176
db33220f
KR
177Tue Dec 8 00:06:48 1992 Ken Raeburn (raeburn@rtl.cygnus.com)
178
016e0d42
ILT
179 * config/obj-coffbfd.c: Include libcoff.h.
180
db33220f
KR
181 * version.c: Now version 1.93.
182
dde624ef
KR
183Mon Dec 7 00:39:09 1992 Ken Raeburn (raeburn@cygnus.com)
184
db33220f
KR
185 * config/tc-i386.c (md_pseudo_table): For 386bsd and linux, do
186 power-of-two alignment for .align.
187
dde624ef
KR
188 * as.h: If BROKEN_ASSERT, just redefine `assert' to be trivial,
189 and leave everything else alone.
190
191Fri Dec 4 16:58:42 1992 Ken Raeburn (raeburn@cambridge.cygnus.com)
192
193 * Makefile.in (as.new): Don't bother saving as.old.
194
195 * write.c: Conditionalize on OBJ_VMS, not VMS.
196 (magic_number_for_object_file): Don't define if OBJ_VMS.
197
198 * config/obj-vms.c: Changes for traditional C.
199
7f2cb270
KR
200Thu Dec 3 01:24:07 1992 Ken Raeburn (raeburn@kr-pc.cygnus.com)
201
202 * config/ho-generic.h (malloc, realloc): Declare.
203
204 * Lots of comment/whitespace changes.
205
206 * write.h (struct fix): Some fields reordered, narrowed.
207
208 * read.c (MASK_CHAR): Define using C types, not magic number.
209
210 * as.c, input-file.c: Deleted some unused code.
211
212 * app.c, as.h: Doc fix.
213
214 * flonum-konst.c, flonum-mult.c: Include ansidecl.h.
215
216 * as.h (xmalloc): Argument is long.
217
218 * xmalloc.c (error): Remove declaration; as.h takes care of it.
219
220Mon Nov 30 11:42:11 1992 Ken Raeburn (raeburn@cambridge.cygnus.com)
221
222 * configure.in: Accept target OS "vms".
223
224 * symbols.c: Merged ANSI and non-ANSI function decls, using
225 PARAMS macro.
226
227 * xmalloc.c: Just include as.h, don't bother trying to figure out
228 other header files.
229
230 * strstr.c, strerror.c: Deleted.
231 * Makefile.in: Deleted references.
232
233 * config/tc-ns32k.c: Don't include header file for string
234 declarations; leave that to ho-*.h.
235
236Fri Nov 27 04:11:36 1992 Ken Raeburn (raeburn at cambridge-laptop.cygnus.com)
237
238 * config/coff_gnu.h [TC_I860]: Guesses for reloc type values,
239 imported from FSF sources.
240
241 * messages.c (strerror): Declare unconditionally.
242
243 * as.h: Delete alloca and register definitions.
244
245 * config/atof-ieee.c (mask): Now const.
246
247 * obstack.c, obstack.h: Deleted.
248
249 * as.h (flag_readonly_data_in_text): New flag.
250 * as.c (main): Set it for -R.
251
252 * as.h (flag_suppress_warnings): New flag.
253 * as.c (main): Set it for -W.
254 * messages.c (as_warn): Check it instead of flagseen['W'].
255
256 * as.h (flag_always_generate_output): New flag.
257 * as.c (main): Set it for -Z.
258
259 * config/tc-sparc.h: Define NEED_FX_R_TYPE.
260 * config/tc-a29k.h: Ditto.
261 * write.h (struct fix): Don't conditionalize fx_r_type field on TC
262 macros.
263
264 * as.h: Merged ANSI and non-ANSI function decls, using PARAMS
265 macro.
266 * bignum.h, expr.h, flonum.h, frags.h, input-file.h, listing.h,
267 obj.h, output-file.h, read.h, struc-symbol.h, symbols.h, tc.h,
268 write.h: Likewise.
269 * read.c: Likewise.
270
271 * xmalloc.c: Conditionalize on HAVE_MALLOC_H, not USG. Fold in
272 xrealloc from xrealloc.c.
273 * xrealloc.c: Deleted.
274 * Makefile.in (REAL_SOURCES, OBJS): Adjusted.
275
276 * configure.in: For host CPU a29k, rs6000, vax, consider using bsd
277 or vms ho- files.
278
279 * config/ho-sysv.h (setbuffer, HO_USG): Deleted.
280
281 * config/atof-ieee.c (atof_ieee): Exponent field isn't a pointer;
282 don't initialize it with NULL.
283
284 * config/ho-vax.h (M_VAX): Deleted; was unused.
285
286 * README-vms, config/ho-vms.h, config/obj-vms.c, config/obj-vms.h:
287 New files imported from FSF version, contributed by Eric Youngdale.
288 * README-vms-dbg, config/vms: Deleted.
289
290 * ChangeLog, config/ChangeLog: Merged.
291
292 * config/*tahoe*, configure.in: Tahoe support brought in from FSF
293 version.
294
295 * input-file.c (input_file_open): Eliminate call to setvbuf.
296 [USG] (setbuffer): Deleted macro.
297
6efd877d
KR
298Mon Nov 23 11:00:16 1992 Ken Raeburn (raeburn@cygnus.com)
299
300 * all files: Whitespace changes for GNU indentation style, done by
7f2cb270 301 GNU `indent'. Some cleanup still needed, especially of comments.
6efd877d
KR
302
303 * configure.in: No te-386bsd.h file exists; don't try to use it.
304
7f2cb270
KR
305 * obj-coff.c (obj_coff_endef): Use as_warn, not fprintf.
306
307 * tc-m68k.c (md_assemble): Don't complain about 68000 with 68881;
308 could be doing emulation.
309
6efd877d
KR
310Tue Nov 10 09:49:24 1992 Ian Lance Taylor (ian@cygnus.com)
311
312 * Makefile.in (as.o, obj-format.o): added dependency on subsegs.h.
313
314 * subsegs.h: add extern to segment_info declaration.
315
316 * read.h: added extern declarations for comment_chars,
317 line_comment_chars, and line_separator_chars.
318 read.c, app.c: removed definitions of comment_chars,
319 line_comment_chars, and line_separator_chars.
320
7f2cb270
KR
321 * tc-m68k.c (m68k_reg_parse): If REGISTER_PREFIX isn't defined,
322 still accept (but don't require) OPTIONAL_REGISTER_PREFIX before
323 the register name.
324 (insert_reg): put REGISTER_PREFIX before register names before
325 putting them in the symbol table.
326 * tc-m68k.h (OPTIONAL_REGISTER_PREFIX): Define to be "%", if not
327 M68KCOFF.
328
329 * obj-coffbfd.c (fill_section): set STYP_NOLOAD bit for .bss
330 section.
331
332 * atof-ieee.c, atof-ns32k.c, tc-*.c: made EXP_CHARS, FLT_CHARS,
333 comment_chars, line_comment_chars and line_seperator_chars
334 consistently const, and always initialized them. Included read.h.
335
336Thu Nov 5 17:55:41 1992 Jim Wilson (wilson@sphagnum.cygnus.com)
337
338 * tc-sparc.c (sparc_ip): Add code to flag error if an absolute
339 constant will not fit in an immediate field.
340 (md_apply_fix, RELOC_BASE13 case): Check for relocation overflow.
341
342Wed Nov 4 07:50:46 1992 Ken Raeburn (raeburn@cygnus.com)
343
344 * obj-coff.c (callj_table): Delete global variable.
345 (obj_emit_relocations): Define it locally here, and only if
346 TC_I960 is defined.
347
348 * tc-m68k.c (m68k_reg_parse): Underscore is part of a symbol name.
349 (m68k_ip): Don't warn about bignum used as float bit-pattern.
350
351 * obj-coff.c: Replaced ANSI and non-ANSI function declarations
352 with a single set using PARAMS macro.
353
354 * tc-i960.c (tc_bout_fix_to_chars): Bit-field fixups want a length
355 of 2.
356
357 * tc-i960.c: Missed a couple of 0->NO_RELOC conversions.
358
359 * tc-i960.h (N_BALNAME, N_CALLNAME): Define as char-type values,
360 so widening works consistently.
361
6efd877d
KR
362Wed Oct 28 08:52:34 1992 Ken Raeburn (raeburn@cygnus.com)
363
364 * version.c: Put conditional "const" before version_string, not
365 before dummy function for VMS. Now version 1.91.03.
366
367 * app.c (do_scrub_next_char): Need double-\ before `000' to show
368 printed rep of null character.
369
7f2cb270
KR
370Fri Oct 23 14:40:38 1992 Ian Lance Taylor (ian@cygnus.com)
371
372 * obj-coffbfd.c (write_object_file): check return value of
373 bfd_close_all_done.
374
559d9aac
ILT
375Tue Oct 20 12:18:08 1992 Ian Lance Taylor (ian@cygnus.com)
376
7f2cb270
KR
377 * Support for i386-sysv.
378 obj-coffbfd.c (do_relocs_for, write_object_file): set segment
379 addresses to reasonable sizes. New define ZERO_BASED_SEGMENTS can
380 be used to set them all to zero as was done before.
381 (fill_section): segment addresses now set in write_object_file.
382 (fill_section): Don't set STYP_NOLOAD for .bss section.
383 (fixup_segment): 386 uses strange common symbol format.
384 tc-i386.c (tc_coff_fix2rtype): use R_DIR32, not R_RELLONG, for
385 compatibility with SVR3.2 linker.
6efd877d
KR
386 * configure.in: i386-sysv and i386-sco use coffbfd.
387
559d9aac
ILT
388 * app.c (do_scrub_next_char): discard whitespace after a label.
389
0f8b9790
DZ
390Sat Oct 10 12:33:45 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
391
392 * configure.in: differentiate between SunOS 4 and Solaris2 for Sun4
393 hosts, use the sysv configuration for solaris2
394
7f2cb270
KR
395Mon Oct 5 09:28:57 1992 Steve Chamberlain (sac@thepub.cygnus.com)
396
397 fix i960+non-bfd coff bit rot.
398 * obj-coff.c (c_dot_file_symbol, obj_coff_ln, obj_coff_line):
399 support for C source listings. (obj_coff_endef): look in the right
400 part of the symbol for the symbol name
401
402 * tc-m68k.c (get_num): make it work for all segments, not just the
403 first three.
404
984cf2d7
ME
405Mon Oct 5 03:30:36 1992 Mark Eichin (eichin at tweedledumber.cygnus.com)
406
407 * configure.in: recognize i386-*-bsd emulation.
408
409Thu Oct 1 23:05:12 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
410
411 * configure.in: use the cpu-vendor-os triple for host and target
412
7f2cb270
KR
413Tue Sep 29 12:22:52 1992 Steve Chamberlain (sac@thepub.cygnus.com)
414
415 * obj-coffbfd.c (write_object_file): don't fixup for the z8k
416 * tc-z8k.c: lots of bug fixes
417
418Tue Sep 29 10:51:55 1992 Ian Lance Taylor (ian@cygnus.com)
419
420 * tc-i960.h, tc-i960.c: avoid the ANSI preprocessor addition
421 #elif, since it is not supported by old compilers.
422 ho-rs6000.h, tc-m68k.c: the native RS/6000 compiler miscompiles a
423 couple of expressions in tc-m68k.c.
424
984cf2d7
ME
425Mon Sep 28 21:18:24 1992 Ken Raeburn (raeburn@cambridge.cygnus.com)
426
427 * read.c (cons): If NO_RELOC is defined, use it.
428
7f2cb270
KR
429 * tc-i960.c (get_cdisp): Use NO_RELOC, not 0, in call to fix_new.
430
431Fri Sep 25 18:18:52 1992 Ian Lance Taylor (ian@cygnus.com)
432
433 * tc-m68k.h: if M68KCOFF, define DOT_LABEL_PREFIX (to require
434 local labels to start with a .) and set REGISTER_PREFIX to %.
435 tc-m68k.c (m68k_reg_parse): accept REGISTER_PREFIX if defined.
436
5a0fc1d4
JG
437Fri Sep 25 17:53:43 1992 John Gilmore (gnu@cygnus.com)
438
439 * messages.c: Comment changes.
440
4959cb7b
KR
441Fri Sep 25 14:12:58 1992 Ken Raeburn (raeburn@kyriath.cygnus.com)
442
443 * as.h: Test if __STDC__ is defined only, don't test its value.
444 * messages.c: If __STDC__ is not defined, define NO_STDARG.
445
5e9d510e
BK
446Thu Sep 24 12:42:32 1992 Brendan Kehoe (brendan@rtl.cygnus.com)
447
448 * listing.c (debugging_pseudo): Add stabs and stabn as things to
449 ignore.
450
7f2cb270
KR
451Tue Sep 22 13:02:07 1992 Sean Eric Fagan (sef@cygnus.com)
452
453 * obj-coffbfd.c (do_relocs_for,fill_section): now allocate all
454 sections starting from zero, rather than making them consecutive.
455 This makes subsequent reloc calculations easier, esp if the object
456 format doesn't understand addends. (obj_coff_lcomm): (maybe temporarily)
457 allocate lcomm in .data rather than in .bss. It seems that some
458 tools can't cope with a non-zero sized bss before linkage.
459
460Tue Sep 22 15:10:51 1992 Ken Raeburn (raeburn@cambridge.cygnus.com)
461
462 * tc-m68k.c: Replace "enum m68k_architecture" with "int"
463 throughout. That enum no longer means what we thought it meant.
464
465 * tc-m68k.c (md_assemble, md_parse_option): Handle new
466 "-mno-688[58]1" options.
467
468 * tc-m68k.c: Added CPU32 support.
469
470Fri Sep 18 08:02:18 1992 Steve Chamberlain (sac@thepub.cygnus.com)
471
472 * tc-m68k.c (m68k_ip): An(disp) is not pc relative.
473
569dac15
JW
474Tue Sep 15 17:25:05 1992 Jim Wilson (wilson@sphagnum.cygnus.com)
475
476 * Makefile.in (as.new): Remove dependence on LOCAL_LOADLIBES.
477 Change LIBDEPS dependence to LIBS.
478
efbfb612
ILT
479Tue Sep 15 15:32:02 1992 Ian Lance Taylor (ian@cygnus.com)
480
481 * Makefile.in (install): if $(tooldir) exists, install as in
482 $(tooldir)/bin.
483
987b1491
ILT
484Sun Sep 13 20:30:10 1992 Ian Lance Taylor (ian@cygnus.com)
485
ca5e9d49
ILT
486 * Added WARN_SIGNED_OVERFLOW_WORD define to give an error if any
487 .word is < -32768 or > 32767. The -J flag causes the error to be
488 ignored. This is to catch over-sized switches generated by gcc on
489 systems which don't support the broken .word hack.
490 as.c (main): permit -J if WARN_SIGNED_OVERFLOW_WORD.
491 write.c (fixup_segment): check for signed .word overflow if
492 WARN_SIGNED_OVERFLOW_WORD.
493
987b1491
ILT
494 * write.c (fixup_segment): fixed missing parens in expression
495 checking for byte or word overflow.
496
7f2cb270
KR
497 * obj-coffbfd.h: define WARN_SIGNED_OVERFLOW_WORD.
498 obj-coffbfd.c (fixup_segment): check for signed .word overflow if
499 WARN_SIGNED_OVERFLOW_WORD.
500
501 * obj-coffbfd.c (fixup_segment): fixed missing parens in
502 expression checking for byte or word overflow.
503
504Fri Sep 11 10:21:04 1992 Steve Chamberlain (sac@thepub.cygnus.com)
505
506 Support for i386 coff
507 * obj-coffbfd.h : added stuff
508 * tc-i386.c (tc_coff_fix2rtype): new function
509 * tc-i386.h : new coff defines
510
b1520b1f
ILT
511Thu Sep 10 09:23:15 1992 Ian Lance Taylor (ian@cygnus.com)
512
513 * input-scrub.c (input_scrub_push): call input_file_begin, not
514 input_scrub_begin.
515 messages.c (as_perror): print ": " between the passed in error and
516 the strerror, like perror does.
517
b53ccaac
ILT
518Wed Sep 9 11:06:25 1992 Ian Lance Taylor (ian@cygnus.com)
519
520 * Makefile.in: use gas_target instead of modifying target_cpu.
521 From Steve Chamberlain:
522 Makefile.in: Handle m68*-*-coff*.
523 read.c, read.h: add mult argument to s_space
524
7f2cb270
KR
525 * tc-m68k.c (m68k_ip, m68k_ip_op, get_num, try_moto_index): merge
526 Motorola and MIT syntax; gas can now assemble either type of
527 file.
528 tc-m68kmote.c, tc-m68kmote.h: removed now superfluous files.
529 From Steve Chamberlain:
530 m68kcoff.mt: for m68k COFF.
531 obj-coffbfd.c: (fixup_mdeps) added
532 (size_section) removed bad sanity check
533 (fill_section) added rs_machine_dependent case
534 (write_object_file) call fixup_mdeps
535 (fixup_segment) set fx_subsy to 0.
536 obj-coffbfd.h: define WORKING_DOT_WORD (too hard to support) and
537 handle m68k.
538 tc-m68k.c, config/tc-m68k.h: added m68k COFF support and Motorala
539 pseudo ops.
540
db4d20e5
KR
541Tue Sep 8 17:10:58 1992 Ken Raeburn (raeburn@cambridge.cygnus.com)
542
543 * Makefile.in (LIBS): Include opcode library.
544
e53ab768
KR
545Fri Sep 4 18:20:56 1992 Ken Raeburn (raeburn@cygnus.com)
546
547 * config/tc-m68k.c (get_num, case SEG_BIG): If only small integers
548 including zero are accepted, pass +0.0.
549
7e10f53c
ILT
550Sun Aug 30 21:24:46 1992 Ian Lance Taylor (ian@cygnus.com)
551
552 * Makefile.in: map "as" through program_transform_name when
553 installing.
554
b0952e12
JW
555Sat Aug 29 12:11:12 1992 Jim Wilson (wilson@sphagnum.cygnus.com)
556
557 * Makefile.in (as.new): Depend on LOCAL_LOADLIBES.
558
7f2cb270
KR
559Fri Aug 28 16:25:22 1992 Ian Lance Taylor (ian@cygnus.com)
560
561 * obj-bout.h, obj-bout.c (obj_header_append, obj_symbol_to_chars),
562 tc-i960.c (md_ri_to_chars): Always output bout object file in
563 little endian byte order (used to use endianness of host).
564
b2f221a9
KR
565Tue Aug 25 15:50:48 1992 Ken Raeburn (raeburn@cambridge.cygnus.com)
566
567 * config/tc-m68k.c (init_table): Now const. Always include 68851
568 data, so that "bc" is available to 68040 cache instructions.
569 Added "tt0", "tt1", and 68ec030 variants.
570 (md_assemble): Complain if 68000 (only) and 68881 are specified.
571 (enum _register): Added TT0, TT1.
572 (m68k_ip, cases '3' and 't'): Handle new operand type codes. Pass
573 line number correctly in "internal error" messages. Don't print
574 architecture-mismatch message for operand errors.
575
576 From Colin Smith (colin@wrs.com):
577 * config/tc-m68k.c (m68k_ip, case '_'): Use addword twice rather
578 than install_operand.
579
ab737e51
SC
580Tue Aug 25 15:13:48 1992 Steve Chamberlain (sac@thepub.cygnus.com)
581
582 * listing.c (buffer_line): rewind to the start of include
583 files, they might be included twice.
584
7f2cb270
KR
585 * z8k.c, z8k.h, z8k.mt: z8000 support stuff
586
7121231f
ILT
587Mon Aug 24 12:45:43 1992 Ian Lance Taylor (ian@cygnus.com)
588
589 * Makefile.in: defined TARGET_CPU for C code so that it can choose
590 one element of a family.
591
7f2cb270
KR
592 * tc-m68k.c: use TARGET_CPU to choose default cpu type.
593
594 * te-generic.h: default to LOCAL_LABELS_DOLLAR and LOCAL_LABELS_FB
595 so that we can assemble hand-written libgcc code.
596
4772861e
KR
597Fri Aug 21 14:38:44 1992 Ken Raeburn (raeburn@cambridge.cygnus.com)
598
599 * messages.c (as_warn): Use fputs, not fprintf, with a buffer that
600 has already been formatted (but may still contain %-characters).
601 (as_bad): Likewise.
602
7f2cb270
KR
603Wed Aug 19 11:20:59 1992 Ian Lance Taylor (ian@cygnus.com)
604
605 * tc-m68k.c, tc-m68kmote.c: the cas2 instruction is supposed to be
606 written with indirection on the last two operands, which can be
607 either data or address registers. Added a new operand type 'r'
608 which accepts either register type. Added '(' to notend stuff in
609 tc-m68kmote.c to accept (a0):(a2) in cas2 instruction.
610
09952cd9
KR
611Wed Aug 19 09:25:09 1992 Ken Raeburn (raeburn@cygnus.com)
612
613 * as.h (enum _relax_state): Start off at one, not zero, to better
614 catch uninitialized-variable errors.
615 (linkrelax): Declare new variable.
616
617 * messages.c (warning_count, error_count): Default initializer is
618 sufficient.
619
620 * write.c: Merged some declarations, using PARMS macro.
621 (text_frag_root, data_frag_root, bss_frag_root, text_last_frag,
622 data_last_frag): No longer static.
623 (write_object_file, case rs_align or rs_org): If HANDLE_ALIGN is
624 defined, call it. Change segments before calling fixup_segment.
625 (relax_align): If linkrelax, provide extra padding.
626
627 * obj-bout.c (obj_emit_relocations): Emit alignment relocs despite
628 their not having symbols associated.
629
630 * tc-i960.c (norelax, instrument_branches): Default initializer is
631 sufficient.
632 (linkrelax): Delete variable definition.
633 (mem_fmt): Call fix_new with NO_RELOC.
634 (tc_bout_fix_to_chars): Handle alignment relocs.
635 (i960_handle_align): New function.
636 * tc-i960.h (linkrelax): Delete declaration.
637 (HANDLE_ALIGN): New macro; calls i960_handle_align.
638 (NEED_FX_R_TYPE, NO_RELOC): New macros.
639
a457f4d9
KR
640Tue Aug 18 14:59:21 1992 Ken Raeburn (raeburn@cygnus.com)
641
642 * config/sparc.mt: New file. Grab sparc opcode table from bfd
643 library.
644
4b857710
ILT
645Tue Aug 18 14:16:38 1992 Ian Lance Taylor (ian@cygnus.com)
646
647 * Makefile.in: always create installation directories. Removed
648 MINUS_G, set CFLAGS to default to -g, added FLAGS_TO_PASS, passed
649 FLAGS_TO_PASS to recursive makes.
650
f7e9bc5a
SC
651Mon Aug 17 15:09:56 1992 Steve Chamberlain (sac@thepub.cygnus.com)
652
653 * input-scrub.c (input_scrub_pop, input_scrub_push): memcpy was
654 being used with args swapped, causing occasional lossage when
655 refilling buffers after an include file.
656
c1c28543
KR
657Mon Aug 17 13:18:51 1992 Ken Raeburn (raeburn@cygnus.com)
658
659 * messages.c (as_tsktsk): Use correct ANSI form for stdarg
660 version. Discard bogus DONTDEF version.
661 (as_warn, as_bad, as_fatal): Likewise.
662
2e20e59a
KR
663Fri Aug 14 18:31:14 1992 Ken Raeburn (raeburn@cygnus.com)
664
665 * config/tc-m68k.c (m68k_ip): If instruction is invalid for the
666 selected architecture, print a message saying so and listing what
667 processors support it, rather than saying "operands mismatch".
668
c8c7e0bf
KR
669Thu Aug 13 13:53:19 1992 Ken Raeburn (raeburn@cygnus.com)
670
671 * as.h [BROKEN_ASSERT]: If defined, turn off all assertion checks.
672
673 * config/ho-rs6000.h (M_RS6000): Don't define it.
674 (free): Declare it.
675 (BROKEN_ASSERT): Define it if not __STDC__.
676
7f2cb270
KR
677Tue Aug 11 12:58:14 1992 Ken Raeburn (raeburn@cygnus.com)
678
679 * sparc.mt: New file.
680
681Mon Aug 10 14:37:08 1992 Per Bothner (bothner@cygnus.com)
682
683 * tc-m68k.c: ".align N" means align to N-byte boundary *only*
684 if TN_SUN3; otherwise align to 2**N-byte bounary.
685
7fd3560a
SC
686Thu Aug 6 12:10:39 1992 Steve Chamberlain (sac@thepub.cygnus.com)
687
688 * read.c (s_fill): make the .fill size clamped error a warn and
689 fix bug where 0's were always placed.
690
7f2cb270
KR
691 * config/tc-h8300.c: if a :8 is seen after an operand, fill top
692 two bytes of any constant with 0xff:
693
62594bd7
SC
694Wed Aug 5 12:02:40 1992 Steve Chamberlain (sac@thepub.cygnus.com)
695
696 * config/tc-m68k.c (md_pseudo_table): fix the .align thing
4f3569fa 697 the right way; for just the 68k. Sun 3 .align is nbytes, not ptwo.
62594bd7 698
7f2cb270
KR
699Wed Aug 5 01:54:34 1992 John Gilmore (gnu at cygnus.com)
700
701 * tc-m68k.c (try_index): Error if index scaling specified and
702 assembling for an older CPU than a 68020.
703
680227f3
KR
704Sat Aug 1 19:10:13 1992 Ken Raeburn (raeburn@cygnus.com)
705
706 * config/tc-sparc.c (tc_aout_fix_to_chars): If pc-relative, take
707 fx_offset into account.
708
c51ccfd5
KR
709Fri Jul 31 21:53:28 1992 Ken Raeburn (raeburn@cygnus.com)
710
711 * configure.in (mips host): Accept "ultrix" with version number.
712
713 * expr.c (floating_constant): Separate "=-" to avoid confusing
714 ancient or broken compilers.
715
716 * config/tc-m68k.c (m68k_ip): Mismatch error could also indicate
717 processor/opcode mismatch, so reword the error message.
718 (md_assemble): If no CPU has been set (even if FPU/PMMU
719 characteristics have been), default to 68020. Don't need extra
720 quotes around error string.
721
14f1fc24
JW
722Fri Jul 31 12:26:34 1992 Jim Wilson (wilson@sphagnum.cygnus.com)
723
724 * read.c (potable): Revert sac's incorrect change made Jul 13.
725 Align really is supposed to be ptwo not nbytes.
726
727Mon Jul 20 02:51:59 1992 D. V. Henkel-Wallace (gumby@cygnus.com)
728
729 * Makefile.in: _Do_ include libiberty. (from sef)
730
731Fri Jul 17 15:15:28 1992 Ken Raeburn (raeburn@cygnus.com)
732
733 * expr.c (integer_constant): Handle "0f" and "0b" label references
734 properly.
735
462088b8
SC
736Thu Jul 16 08:20:17 1992 Steve Chamberlain (sac@thepub.cygnus.com)
737
738 * write.c (fixup_segment): if relaxing, don't do anything.
739 * config/obj-bout.[ch] : maintain the a_relaxable file header info
740 * config/tc-i960.c: new option -linkrelax
741
742Mon Jul 13 14:11:36 1992 Steve Chamberlain (sac@thepub.cygnus.com)
743
744 * expr.c (expr): allow SEG_BSS in expressions
745 * read.c (potable): align should be nbytes, not ptwo!
746 * write.c (write_object_file): extra glue for new bss attributes
747 (relax_segment): SEG_BSS is ok now
748 * config/tc-m68k.c (m68k_ip_op): can now parse more @( modes
749
7f2cb270
KR
750Mon Jul 6 17:09:32 1992 Steve Chamberlain (sac@cygnus.com)
751
752 * obj-coffbfd.c (fill_section): mark .lit sections as STYP_LIT
753
462088b8
SC
754Mon Jun 1 16:20:22 1992 Michael Tiemann (tiemann@cygnus.com)
755
756 * configure.in: recognize m680x0 as having sun3 emulation mode for
757 vxworks environment.
758
759
0b0b5dba
DHW
760Tue Jun 30 20:25:54 1992 D. V. Henkel-Wallace (gumby@cygnus.com)
761
762 * Makefile.in: Add program_suffix (parallel to program_prefix)
763
7c2d4011
SC
764Wed Jun 24 10:57:54 1992 Steve Chamberlain (sac@thepub.cygnus.com)
765
766 * app.c (process_escape): new function to handle escapes the right
767 way, (do_scrub_next_char): use new function
768 * cond.c (s_ifdef): do ifdef/ifndef right
769 * read.c (s_fill): make the , expressions optional like the doc
770 says
771 * config/tc-h8300.[ch]: better warnings
772
90d49457
SC
773Tue Jun 9 07:54:54 1992 Steve Chamberlain (sac@thepub.cygnus.com)
774
65bfcf2e
SC
775 * subsegs.c (subsegs_begin): create bss0_frchainP in the same was
776 as data0_frchainP
777
778 * write.c (write_object_file): various changes to handle data in
779 the BSS segment in much the same was as stuff in the DATA segment.
780
7f2cb270
KR
781 * tc-m68k.c (m68kip): Fix typo so that only arch's >=68020 do
782 pcrel data stuff. (md_estimate_size_before_relax): when relaxing a
783 68010 bxx into a bra+6 jmpxx, put the bytes of the jmp opcode into
784 the right place. (s_bss): Don't put .bss stuff into SEG_DATA, put
785 it into SEG_BSS
462088b8 786
f8701a3f
SC
787Thu Jun 4 11:59:13 1992 Steve Chamberlain (sac@thepub.cygnus.com)
788
789 * expr.c(expr): allow SEG_REGISTER in expressions.
790 * read.c(pseudo_set): register expressions can be the source of a
791 set.
792 * subsegs.c (subseg_new): Now -R forces all changes to SEG_DATA to
793 goto SEG_TEXT (if a.out)
794 * write.c (write_object_file): If a.out don't use the old way for
795 -R.
796 * config/obj-a.out (s_sect): complain if the user tries to use a
797 subsegment with a value which might interfere with out -R hackery.
798 * config/tc-m68k.c (m68k_reg_parse): lookup names in symbol table
799 rather than use ugly if tree. (init_regtable): insert register
800 names into symbol table.
801
ebfb4167
MT
802Tue Jun 2 16:47:09 1992 Steve Chamberlain (sac@cygnus.com)
803
804 * write.c (write_object_file): keep the fix_tail clean, which
805 fixes a bug in -R where relocations were being lost.
806
807Mon Jun 1 16:20:22 1992 Michael Tiemann (tiemann@cygnus.com)
808
809 * configure.in: recognize m680x0 as having sun3 emulation mode for
810 vxworks environment.
811
812Sun May 31 05:33:00 1992 david d `zoo' zuhn (zoo@cygnus.com)
813
814 * configure.in: recognize m680x0 as an m68k
815
dfd53fe9
JW
816Thu May 28 11:22:02 1992 Jim Wilson (wilson@sphagnum.cygnus.com)
817
818 * configure.in: Recognize sparclite as a sparc variant.
819
7f2cb270
KR
820 * tc-sparc.c: Use new ARCHITECTURES_CONFLICT_P macro. Mention new
821 -Asparclite flag.
822
d312e231
SC
823Tue May 26 16:47:56 1992 Steve Chamberlain (sac@thepub.cygnus.com)
824
825 * config/tc-a29k.c: lint
826 * listing.c, expr.c: patches from Andrew Smith
827
7f2cb270
KR
828Mon May 4 18:56:19 1992 Steve Chamberlain (sac@thepub.cygnus.com)
829
830 * obj-coffbfd.c: use is a synonym for section, (do_relocs_for):
831 calc the base of relocs correctly.
832 * tc-a29k.c (parse_operand): allow expressions to be in any section.
833
d312e231
SC
834Mon Apr 27 13:13:31 1992 K. Richard Pixley (rich@cygnus.com)
835
836 * as.c, write.c: use -K rather than -k for the broken word warning
837 option.
838
fa493b93
RP
839Tue Apr 21 13:35:30 1992 K. Richard Pixley (rich@cygnus.com)
840
841 * Makefile.in: do not print recursion lines.
842
d96c09ed
RP
843Wed Apr 15 21:19:31 1992 K. Richard Pixley (rich@rtl.cygnus.com)
844
845 * Makefile.in: the tooldir copy of gas goes directly in tooldir.
846
847Tue Apr 14 14:50:22 1992 Ken Raeburn (Raeburn@Cygnus.COM)
848
849 * write.c (write_object_file): For b.out format, round up section
850 start addresses to match required alignment.
851
81484684
KR
852Thu Apr 9 05:45:29 1992 Ken Raeburn (Raeburn@Cygnus.COM)
853
854 * Makefile.in (install): Install into $(tooldir)/bin, since that's
855 where gcc looks for it.
856
3876b4c5
SEF
857Tue Apr 7 15:12:15 1992 Sean Eric Fagan (sef@cygnus.com)
858
859 * Makefile.in: Changed some lines to be less confusing for some
860 makes.
861
862 * input-file.c: Conditionalize on _IOFBF, not VMS.
863
864 * read.c, write.c: Change a series of ifdef/elif to
865 ifdef/else/ifdef etc.
866
867Fri Mar 27 12:21:16 1992 K. Richard Pixley (rich@cygnus.com)
868
869 * symbols.c (fb_label_init): fix sizeof to memset.
870
95a925b8
RP
871Fri Mar 13 15:45:44 1992 K. Richard Pixley (rich@cygnus.com)
872
3876b4c5
SEF
873 * Makefile.in: install the man page.
874
95a925b8
RP
875 * Makefile.in: pass down MAKEINFO explicitly on info.
876
5d53038b
SC
877Fri Mar 13 08:03:03 1992 Steve Chamberlain (sac@thepub.cygnus.com)
878
879 * flonum-const.c: renamed flonum-konst.c to stop dos name
880 conflict.
881
7f2cb270
KR
882Thu Mar 12 04:42:38 1992 K. Richard Pixley (rich@cygnus.com)
883
884 * tc-m68k.h, te-sun3.h: moved LOCAL_LABELS_FB definition from
885 tc-m68k.h to te-sun3.h.
886
8c1b25e4
RP
887Wed Mar 11 23:32:42 1992 K. Richard Pixley (rich@cygnus.com)
888
889 * configure.in: vxworks68 gets te-sun3.h.
890
891 * expr.c: remove limitation that local_labels_dollar or
892 local_labels_fb must be < 10.
893
894 * symbols.c: remove local_labels_dollar, replace with a function
895 interface for a sparse array. All users adjusted.
896
7f2cb270
KR
897 * te-sun3.h: add LOCAL_LABELS_DOLLAR.
898
8c1b25e4
RP
899Fri Mar 6 21:57:18 1992 K. Richard Pixley (rich@cygnus.com)
900
901 * Makefile.in: added check target.
902
903Tue Mar 3 15:45:56 1992 K. Richard Pixley (rich@rtl.cygnus.com)
904
905 * Makefile.in: added tooldir and program_prefix.
906
907Sun Mar 1 04:43:19 1992 Michael Tiemann (tiemann@cygnus.com)
908
909 * write.{c,h} (fix_new): Make these declarations consistent.
910
1651b22d
MT
911Sat Feb 29 13:59:10 1992 Michael Tiemann (tiemann@cygnus.com)
912
913 * Makefile.in (strerror.o): Add rule so that broken Sun make can
914 work in subdirs.
915
5373c439
SC
916Wed Feb 26 19:26:28 1992 Steve Chamberlain (sac at thepub.cygnus.com)
917
918 * read.c, obj-coffbfd.c : fix h8300 specific bit rot
919
920 * expr.c (operand): if can't work out what sort of operand it is,
921 then look through FLT_CHARS for a hint.
922
8c1b25e4
RP
923Wed Feb 26 18:04:40 1992 K. Richard Pixley (rich@cygnus.com)
924
925 * Makefile.in, configure.in: removed traces of namesubdir,
926 -subdirs, $(subdir), $(unsubdir), some rcs triggers. Forced
927 copyrights to '92, changed some from Cygnus to FSF.
928
f24f7577
SC
929Tue Feb 25 14:17:15 1992 Steve Chamberlain (sac at rtl.cygnus.com)
930
14d3e47b
SC
931 * expr.c: If an expression is single comma, then return with
932 SEG_ABSENT rather than an error - since the sparc front end does
933 really strange things with things like fbge,a
934
f24f7577
SC
935 * as.h: include bfd.h if using many sections
936 * expr.c: LOCAL_LABELS_FB had been changed to lower case - so
937 local labels didn't work.
938 * listing.c (list_symbol_table): don't core dump when there's no
939 symbol there.
940 * write.c, write.h: call fix_new with the right number of args on
941 the H8.
942 * config/tc-h8300.[ch] : fix bugs reported by HMSI, and make
943 errors nices
944
c593cf41
SC
945Sat Feb 22 12:26:28 1992 Steve Chamberlain (sac at rtl.cygnus.com)
946
947 * app.c: MRI compatibility - allow single quote to start a string.
948 * as.c: fix typo recently introduced.
949 * as.h : Don't include aout/reloc.h - it's not right for COFF!
950 * expr.c: Much rewriting, to accomodate MRI syntax for
951 expressions. Also easier to read now.
952 * listing.c: Put back defuns
953 * read.c: modified to accept MRI syntax, put back listing pseudo
954 ops so that an assembler built with NO_LISTING ignores list ops
955 rather than pukes.
956 * write.c, write.h: fixs - only keep a reloc type in a fix if the target
957 machine is a SPARC or a 29K.
958 * config/obj-aout.c: added s_sect pseudo op
959 * config/obj-coffbfd.c: lints, set the filehdr flags right and
960 fill in the timestamp.
961 * config/obj-coffbfd.h: Since we don't include aout/reloc.h
962 anymore, define all the relocs which the tc-<x> bit will use so we
963 can translate from them to the coff types.
964 * config/tc-a29k.c: reloc_type isn't ane enum any more
965 * config/tc-m68k.c: Added NO_RELOC definition.
966
2d97273c
RP
967Fri Feb 21 06:21:07 1992 K. Richard Pixley (rich@rtl.cygnus.com)
968
c593cf41
SC
969 * Makefile.in: put header files before C source for TAGS; remove
970 references to non-existent syscalls.h.
971
2d97273c
RP
972 * read.c, write.c subsegs.c: back out the .bss changes.
973
7f2cb270
KR
974 * obj-aout.c: do not include stab.gnu.h if NO_LISTING.
975
976 * tc-i860.c, a.out.gnu.h: move i860 relocs to a proper place.
977
978 * a.out.h: removed.
979
6d5460ab
RP
980Fri Feb 21 01:08:48 1992 Minh Tran-Le (TRANLE@INTELLICORP.COM)
981
982 * symbols.c (local_label_name): symbols now start with ^A.
983
984 * read.c, subsegs.c, write.c obj-coff.c: added handling of
985 `.bss` pseudo op for unitialized data. The new gcc (1.37.9x)
986 generate these sections. .align: will use NOP_OPCODE or 0
987 for padding. This is just for being nice to the
988 disassembler.
989
990 * expr.c (operand): changed to generate local label "\001L0"
991 starting with a ^A so that it is recognized as a local label.
992
993 * as.c (perform_an_assembly_pass): zero bss_fix_root, too.
994
7f2cb270
KR
995 * tc-i386.c: tc-i386.c: added handling of the following opcodes:
996 i/o opcodes - inb, inw, outb and outw. string manipulation with
997 att syntax - scmp, slod, smov, ssca, ssto.
998
999 * obj-coff.c: (for aix386) Moved the symbols .text, .data and .bss
1000 to just after .file .
1001
1002 In obj_crawl_symbol_chain() where it tries to put the external
1003 symbols apart, with the condition:
1004 (!S_IS_DEFINED(symbolP) &&
1005 !S_IS_DEBUG(symbolP) &&
1006 !SF_GET_STATICS(symbolP))
1007 it was moving too many symbols out. So I switch it back to the
1008 condition:
1009 (S_GET_STORAGE_CLASS(symbolP) == C_EXT && !SF_GET_FUNCTION(symbolP))
1010
1011 In obj_emit_relocations() added the conditional on KEEP_RELOC_INFO
1012 so that we don't use the F_RELFLG which make the linker complain
1013 that somebody has stripped the relocation info.
1014
1015 Also, the AIX ld program require that the relocation table
1016 is sorted by r_vaddr like the standard ATT assembler does.
1017
1018 [he also changed the sizeof(struct ...)'s into the coff
1019 style FOOSZ macros. I'm not sure this is right, but I can't
1020 remember why. xoxorich.]
1021
d6e344db
RP
1022Fri Feb 21 01:08:48 1992 K. Richard Pixley (rich@cygnus.com)
1023
1024 * Makefile.in, configure.in, doc: use the doc. Build it, install
1025 it, clean it, etc.
1026
eb9eacd3
RP
1027Tue Feb 18 02:21:25 1992 K. Richard Pixley (rich at cygnus.com)
1028
aa3782d2
RP
1029 * read.c: white space and comments only.
1030
f816adbc
RP
1031 * configure.in: use the new atof-ns32.c for ns32k.
1032
eb9eacd3
RP
1033 * write.c: comment change only.
1034
7f2cb270
KR
1035 * tc-m88k.[hc]: pulled in from hack's unfinished work. These
1036 aren't yet integrated.
1037
1038 * tc-i860.[hc]: blew off the dust. Something must still be done
1039 about conflicting relocation types.
1040
1041 * tc-ns32k.c: Replaced previous tc_aout_fix_to_chars stub with the
1042 real thing.
1043
1044 * tc-i960.c, tc-sparc.c: white space and comments only.
1045
1046 * tc-a29k.h: delete duplicate macro definition.
1047
1048 * new file atof-ns32k.c copied from hack's last unreleased gas.
1049
542e1629 1050Mon Feb 17 07:51:06 1992 K. Richard Pixley (rich at cygnus.com)
b3ca913f 1051
eb9eacd3
RP
1052 * config/tc-ns32k.c: actually make tc_aout_fix_to_chars work
1053 rather than abort.
1054
542e1629
RP
1055 * nearly everything. flush ChangeLog, package as gas-1.92.1.
1056 ChangeLog's prior to this are sketchy at best. I have logs.
1057 They just aren't ChangeLogs.
This page took 0.120706 seconds and 4 git commands to generate.