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