restore the space that need to be present
[deliverable/binutils-gdb.git] / gas / ChangeLog
CommitLineData
cfc71c6d
ILT
1Thu Sep 5 13:40:29 1996 Ian Lance Taylor <ian@cygnus.com>
2
3 * ecoff.c (ecoff_new_file): New function.
4 * ecoff.h (ecoff_new_file): Declare.
5 * config/obj-ecoff.h (obj_app_file): Define.
6
7Thu Sep 5 13:39:25 1996 Richard Henderson <rth@tamu.edu>
8
9 * config/tc-alpha.c (load_expression): Bias the .lit8 section
10 symbol by 32k so that our 16-bit signed offset can address the
11 entire chunk. Reported by <matt@lkg.dec.com>.
12
711254da
ILT
13Wed Sep 4 10:23:20 1996 Ian Lance Taylor <ian@cygnus.com>
14
15 * config/tc-mips.c (load_register): Remove unused variable tmp.
16
1b68deb5
JSC
17Wed Sep 4 11:24:29 1996 James G. Smith <jsmith@cygnus.co.uk>
18
19 * config/tc-mips.c (load_register): Remove unnecessary code that
20 was causing the high 32bits of 64bit constants to be lost.
21
22start-sanitize-d10v
23Tue Sep 3 13:52:56 1996 Martin M. Hunt <hunt@pizza.cygnus.com>
24
25 * config/tc-d10v.c: Added changes to support function
26 pointers and "@word" syntax.
27
28end-sanitize-d10v
c84615bc 29start-sanitize-v850
05fd83ed
JL
30Tue Sep 3 11:57:18 1996 Jeffrey A Law (law@cygnus.com)
31
32 * config/tc-v850.c: Remove commented out and #if 0'd code.
33 (v850_reloc_prefix): Provide prototype.
34 (postfix, get_reloc, build_insn): Remove prototypes for nonexistant
35 functions.
36 (md_begin, md_assemble, md_apply_fix3): Remove unused variables.
37 (md_assemble): Add default to case statement.
38
270fd2ad
JL
39Sat Aug 31 16:03:00 1996 Jeffrey A Law (law@cygnus.com)
40
41 * config/tc-v850.c (md_assemble): Compute size of the instrction
42 from the opcode.
74dd0c07 43
2d56269e
JL
44 * config/tc-v850.c (md_apply_fix3): Do simple byte, short and
45 word fixups too.
46
270fd2ad
JL
47Fri Aug 30 23:50:08 1996 Jeffrey A Law (law@cygnus.com)
48
74dd0c07
JL
49 * config/tc-v850.c (md_apply_fix3): Use little endian get/put
50 routines to fetch/store the updated instruction from/to memory.
51 (v850_insert_operand): If the operand has a specialized insert
52 routine, call it.
53
c84615bc
C
54Fri Aug 30 18:35:26 1996 J.T. Conklin <jtc@hippo.cygnus.com>
55
56 * config/tc-v850.c (reg_name_search): Align calling convention to
57 be like identical function found in tc-ppc.c.
58 (get_reloc): Removed.
59 (v850_reloc_prefix): New function, parse lo(), hi() and hi0().
60 (md_assemble): emit fixups.
61 (md_pcrel_from): renamed from md_pcrel_from_section, emit proper
62 displacement.
63 (md_apply_fix3): handle fixups/relocs.
64 * config/tc-v850.h (MD_PCREL_FROM_SECTION): Removed definition.
65
66end-sanitize-v850
0f616818
ILT
67Fri Aug 30 18:12:00 1996 Ian Lance Taylor <ian@cygnus.com>
68
69 Add SH ELF support.
70 * configure.in (sh-*-elf*): New target.
71 * config/tc-sh.h (TARGET_ARCH): Define.
72 (WORKING_DOT_WORD): Define.
73 (TC_COFF_FIX2RTYPE): Only define if OBJ_COFF.
74 (BFD_ARCH, COFF_MAGIC, TC_COUNT_RELOC): Likewise.
75 (TC_RELOC_MANGLE, tc_coff_symbol_emit_hook): Likewise.
76 (DO_NOT_STRIP, NEED_FX_R_TYPE, TC_KEEP_FX_OFFSET): Likewise.
77 (TC_COFF_SIZEMACHDEP, tc_frob_file): Likewise.
78 (SUB_SEGMENT_ALIGN): Likewise.
79 (RELOC_32): Don't define.
80 (tc_frob_file_before_adjust): Define if BFD_ASSEMBLER.
81 (target_big_endian): Declare if OBJ_ELF.
82 (TARGET_FORMAT): Define if OBJ_ELF.
83 * config/tc-sh.c: Use BFD reloc codes instead of SH COFF reloc
84 numbers throughout.
85 (tc_crawl_symbol_chain): Only define if OBJ_COFF.
86 (tc_headers_hook, tc_coff_sizemachdep): Likewise.
87 (struct sh_count_relocs): Define.
88 (sh_count_relocs): New static function, broken out of
89 sh_frob_file. Add BFD_ASSEMBLER code.
90 (sh_frob_section): Likewise.
91 (sh_frob_file): Call sh_frob_section.
92 (md_convert_frag): If BFD_ASSEMBLER, change type of headers, and
93 call section_symbol rather than seg_info (seg)->dot.
94 (md_section_align): Add OBJ_ELF version.
95 (SWITCH_TABLE_CONS): Define.
96 (SWITCH_TABLE): Use SWITCH_TABLE_CONS.
97 (md_apply_fix): Change parameter types if BFD_ASSEMBLER. Only
98 handle fx_r_type == 0 if not BFD_ASSEMBLER. Return 0 if
99 BFD_ASSEMBLER.
100 (struct reloc_map): Define if not BFD_ASSEMBLER.
101 (coff_reloc_map): Likewise.
102 (sh_coff_reloc_mangle): Use coff_reloc_map to convert fx_r_type.
103 (tc_gen_reloc): New function if BFD_ASSEMBLER.
104 * write.c (write_relocs): Ifdef out fx_where test which triggers
105 inappropriately for SH ELF.
106 (write_object_file): Call tc_frob_file_before_adjust and
107 obj_frob_file_before_adjust if they are defined.
108
109 * write.c (write_object_file): Use BFD_RELOC_16, not
110 BFD_RELOC_NONE, when calling fix_new_exp for a broken word.
111
112 * read.c (emit_expr): Fix conversion of byte count to BFD reloc
113 code.
114
20dbcd5c
MH
115start-sanitize-d10v
116Fri Aug 30 14:47:38 1996 Martin M. Hunt <hunt@pizza.cygnus.com>
117
118 * config/tc-d10v.c (find_opcode): Fix problem with calculating
119 branch sizes in across sections.
120
121end-sanitize-d10v
05631de2
JL
122start-sanitize-v850
123Fri Aug 30 00:44:13 1996 Jeffrey A Law (law@cygnus.com)
124
125 * config/tc-850.c (md_assemble): Handle hi() correctly. Handle
126 hi0() too.
127
128Wed Aug 28 23:11:08 1996 Jeffrey A Law (law@cygnus.com)
129
130 * config/tc-v850.c (md_begin): Deal with end of opcode
131 table marker.
132
133end-sanitize-v850
e592d28f
MH
134start-sanitize-d10v
135Wed Aug 28 19:20:04 1996 Martin M. Hunt <hunt@pizza.cygnus.com>
136
137 * config/tc-d10v.c (find_opcode): Fix a bug which could generate
138 the wrong opcode for cases like st2w where there are many forms
139 of the same instruction.
140
141end-sanitize-d10v
6fce31a6
ILT
142Tue Aug 27 13:53:22 1996 Ian Lance Taylor <ian@cygnus.com>
143
144 * expr.c (operand): If md_parse_name is defined, call it before
145 calling symbol_find_or_make.
146 * config/tc-ppc.h (md_parse_name): Define.
147 (ppc_parse_name): Declare.
148 * config/tc-ppc.c (reg_name_search): Add regs and regcount
149 parameters.
150 (register_name): Update call to reg_name_search.
151 (cr_operand): New static variable.
152 (cr_names): New static const array.
153 (ppc_parse_name): New function.
154 (md_assemble): If PPC_OPERAND_CR is set in the operand flags, set
155 cr_operand before calling expression.
156
a58b037a
JL
157Tue Aug 27 09:05:50 1996 Jeffrey A Law (law@cygnus.com)
158
159 * config/tc-hppa.c (tc_gen_reloc): Add new argument to
160 hppa_gen_reloc_type call.
161
f9085532 162start-sanitize-d10v
3017263b
MH
163Mon Aug 26 18:24:51 1996 Martin M. Hunt <hunt@pizza.cygnus.com>
164
165 * config/tc-d10v.c: Fixed ".word". Fixed problem with range checking
166 on addresses. Improved error messages.
167 * doc/c-d10v.texi: Added docs for register pairs.
168
f9085532
MH
169Mon Aug 26 13:39:27 1996 Martin M. Hunt <hunt@pizza.cygnus.com>
170
171 * config/tc-d10v.c (parallel_ok): Fix bug in parallel
172 checking code.
173
174end-sanitize-d10v
58275724
ILT
175Mon Aug 26 14:38:22 1996 Ian Lance Taylor <ian@cygnus.com>
176
177 * ecoff.c (init_file): Initialize fMerge to 1.
178 (add_file): Restore old file merging code, but only merge files if
179 fMerge is set.
180 (ecoff_directive_loc): Clear fMerge field of current file.
181 (ecoff_generate_asm_lineno): Likewise.
182
b1c28263
MH
183start-sanitize-d10v
184Fri Aug 23 11:40:47 1996 Martin M. Hunt <hunt@pizza.cygnus.com>
185
186 * doc/c-d10v.texi: Fix typo.
187
188end-sanitize-d10v
c9a32d6c
JL
189start-sanitize-v850
190Fri Aug 23 10:41:32 1996 Jeffrey A Law (law@cygnus.com)
191
58275724
ILT
192 * config/tc-v850.c (md_assemble): Correct bit masking for
193 hi and lo expressions.
194
88b47a85
JL
195 * config/tc-v850.c (md_assemble): Rough cut at demanding
196 "ep" or "r30" in sst and sld instructions.
197 (md_apply_fix3): Don't abort. Just warn that we don't
198 have relocs yet.
199
c9f1b2d9
JL
200 * config/tc-v850.c (CC_NAME_CNT): Define.
201 (cc_name): New function.
202 (md_assemble): Handle V850_OPERAND_CC correctly.
203
d5974c57
JL
204 * config/tc-v850.c (md_assemble): Don't forget to initialize
205 "insn"!
206
0e8f9bd1
JL
207 * config/tc-v850.c (reg_name_search): Generalize to search
208 any given register table.
209 (register_name): Pass appropriate table and size to reg_name_search.
210 (system_register_name): New function.
211 (SYSREG_NAME_CNT): Define.
212 (md_assemble): Handle operands which are system registers.
213
c9a32d6c
JL
214 * config/tc-v850.c (md_assemble): If we find a register, but the
215 opcode doesn't want a register, then we don't have a match.
216 (md_assemble): Get size of the instruction from the opcode table.
217
218end-sanitize-v850
eeef602f
ILT
219Thu Aug 22 10:20:30 1996 Ian Lance Taylor <ian@cygnus.com>
220
8ee90d35
ILT
221 * configure.in: Set and substitute HLDENV.
222 * configure: Rebuild.
223 * Makefile.in (HLDENV): New variable.
224 (as.new): Use $(HLDENV).
225
eeef602f
ILT
226 * ecoff.c (ecoff_directive_endef): Avoid a division by zero error
227 if an array dimension is not known.
228
6be9ec8d
MH
229start-sanitize-d10v
230Thu Aug 22 10:50:00 1996 Martin M. Hunt <hunt@pizza.cygnus.com>
231
232 * config/tc-d10v.c: Fix a reloc bug caused by my last change.
233 * doc/c-d10v.texi: Cleanup.
234
235end-sanitize-d10v
c6aa56bc
C
236start-sanitize-v850
237Tue Aug 20 15:15:16 1996 J.T. Conklin <jtc@hippo.cygnus.com>
238
239 * config/tc-v850.c: New file.
240 * config/tc-v850.h: New file.
241 * configure (v850-*-elf): New target.
242 * configure.in (v850-*-elf): New target.
243
244end-sanitize-v850
ab457c4c 245start-sanitize-d10v
2c2e5626
MH
246Wed Aug 21 15:50:54 1996 Martin M. Hunt <hunt@pizza.cygnus.com>
247
248 * doc/c-d10v.texi: New file.
249 * doc/all.texi: Added D10V stuff.
250 * doc/as.texinfo: Added D10V stuff.
251
ab457c4c
MH
252Tue Aug 20 14:10:02 1996 Martin M. Hunt <hunt@pizza.cygnus.com>
253
254 * config/tc-d10v.c: All references to defined symbols should
255 now use the optimal instruction. .float and .double now work.
256
257end-sanitize-d10v
d4e1b0be
ILT
258Mon Aug 19 14:41:36 1996 Ian Lance Taylor <ian@cygnus.com>
259
260 * config/obj-coff.c (fixup_segment): Adjust PC relative reloc by
261 section address for the i960 as is done for the i386.
262
263Thu Aug 15 16:37:59 1996 Stan Shebs <shebs@andros.cygnus.com>
264
265 * mpw-config.in: Add wildcards for config matching, add mips-*-*
266 case, forward-include bfd/elf-bfd.h.
267
b98b04ea
MH
268start-sanitize-d10v
269Thu Aug 15 13:24:30 1996 Martin M. Hunt <hunt@pizza.cygnus.com>
270
271 * config/tc-d10v.c: Add additional information to the opcode
272 table to help determinine which instructions can be done
273 in parallel.
274
275end-sanitize-d10v
276Thu Aug 15 17:01:31 1996 James G. Smith <jsmith@cygnus.co.uk>
277
278 * config/tc-arm.c: Major changes to add Thumb support, with lots
279 of change input from <rearnsha@armltd.co.uk>.
280 Reverted to INSN_SIZE macro, rather than insn_size variable.
281 (insns): Added ARM "bx" instruction support.
282 (tinsns): Added Thumb instruction definition structure.
283 (arm_tops_hsh): Added hash structure for Thumb opcodes.
284 (md_pseudo_table): Added ".arm", ".thumb" and ".code" pseudo-ops.
285 (opcode_select,s_arm,s_thumb,s_code): Added.
286 (decode_shift): Allow upper-case RRX.
287 (do_ldst): Simpler halfword support.
288 (do_ldmstm): Improved.
289 (reg_list, do_bx, thumb_reg, thumb_add_sub, thumb_shift,
290 thumb_mov_compare, thumb_load_store, do_t_arit, do_t_add,
291 do_t_asr, do_t_branch, do_t_bx, do_t_compare, do_t_ldmstm,
292 do_t_ldrb, do_t_ldrh, do_t_lds, do_t_lsl, do_t_lsr, do_t_mov,
293 do_t_push_pop, do_t_str, do_t_strb, do_t_strh, do_t_sub, do_t_swi,
294 do_t_adr): Added.
295 (md_apply_fix3): Add support for BFD_RELOC_ARM_THUMB_* relocations.
296 (md_parse_option): Add support for -mthumb.
297 (md_show_usage): Updated to reflect new command line option.
298 (arm_data_in_code, arm_canonicalize_symbol_name): Added.
299 * config/tc-arm.h: Provide TC_FIX_TYPE to allow private ARM
300 fragment information to be held.
301
302Thu Aug 15 16:12:00 1996 Richard Earnshaw (rearnsha@armltd.co.uk)
303
304 * tc-arm.c (md_apply_fix3): Also set fixP->fx_done if fx_addsy is
305 non-null, but is a constant.
306 (fix_new_arm): Call make_expr_symbol to make the expression symbol
307 so that error reporting will work correctly.
308
126436a8
ILT
309Wed Aug 14 10:37:21 1996 Ian Lance Taylor <ian@cygnus.com>
310
311 * config/tc-i386.c (tc_i386_fix_adjustable): Don't adjust relocs
312 against weak symbols.
313
0e94336e
ILT
314Tue Aug 13 17:39:24 1996 Ian Lance Taylor <ian@cygnus.com>
315
316 * config/tc-ppc.h (TC_FORCE_RELOCTION): Define if OBJ_XCOFF.
317 (ppc_force_relocation): Declare if OBJ_XCOFF.
318 * config/tc-ppc.c (ppc_force_relocation): New function if
319 OBJ_XCOFF.
320
817e4f75
ILT
321Mon Aug 12 16:49:43 1996 Ian Lance Taylor <ian@cygnus.com>
322
323 * config/tc-mips.h (BYTE_ORDER): Don't define. No longer used.
324
f494d503
MH
325start-sanitize-d10v
326Fri Aug 9 17:48:28 1996 Martin M. Hunt <hunt@pizza.cygnus.com>
327
328 * config/tc-d10v.c: Fix problem with relocs.
329
330end-sanitize-d10v
8d07d2c9
ILT
331Fri Aug 9 14:16:14 1996 Ian Lance Taylor <ian@cygnus.com>
332
333 * config/tc-sh.c (sh_do_align): If not BFD_ASSEMBLER, always align
334 with nops if not in data_section or bss_section.
335
f649d525
ILT
336Thu Aug 8 12:32:56 1996 Klaus Kaempf <kkaempf@progis.de>
337
338 Add support for openVMS/Alpha.
339 * as.h (PRINTF_LIKE): Don't define if VMS, for now.
340 * config/obj-evax.c: New file.
341 * config/obj-evax.h: New file.
342 * config/tc-alpha.c: Add support for EVAX format if OBJ_EVAX is
343 defined.
344 * config/tc-alpha.h: Add support for EVAX format if OBJ_EVAX is
345 defined. Add case for bfd_target_evax_flavour.
346 * config/vms-a-conf.h: New file.
347 * conf-a-gas.com: New file.
348 * configure.in: Add target alpha-*-*vms*.
349 * configure: Rebuild.
350 * makefile.vms: New file.
351 * read.c (s_lcomm): Align bss_seg on 8 byte boundary if OBJ_EVAX.
352 Don't call ffs on openVMS/Alpha.
353
5cece526
ILT
354Wed Aug 7 14:19:03 1996 Philippe De Muyter <phdm@info.ucl.ac.be>
355
356 * configure.in: Make GAS_CHECK_DECL_NEEDED include <string.h> or
357 <strings.h> if they exist. Call GAS_CHECK_DECL_NEEDED on strstr
358 and sbrk.
359 * acconfig.h (NEED_DECLARATION_STRSTR): New macro.
360 (NEED_DECLARATION_SBRK): New macro.
361 * configure, conf.in: Rebuild.
362 * as.h: Only include <strings.h> if HAVE_STRINGS_H.
363 (strstr): Declare if NEED_DECLARATION_STRSTR.
364 * as.c: If HAVE_SBRK and NEED_DECLARATION_SBRK, declare sbrk.
365
e592f0e6
ILT
366Wed Aug 7 11:50:26 1996 Ian Lance Taylor <ian@cygnus.com>
367
d10df990
ILT
368 * symbols.c (resolve_symbol_value): Handle addition or subtraction
369 by a constant before entering the main switch. Reject attempts to
370 apply an arithmetic function to non-absolute symbols, except for
371 the special case of subtraction of two symbols in the same
372 section.
373
cf32394d
ILT
374 * config/tc-mips.c (md_section_align): Do align if OBJ_ELF, but
375 not to more than a 16 byte boundary.
376
e592f0e6
ILT
377 * config/tc-i386.c (tc_gen_reloc): Accept all relocs; remove
378 #ifndef OBJ_ELF lines. From Eric Valette <valette@crf.canon.fr>.
379 (tc_gen_reloc): If out of memory call as_fatal rather than
380 assert. If no howto found, call as_bad_where rather than
381 as_fatal. Change the error message slightly. Set howto to a
382 non-NULL value in order to keep going.
383
5d9a99a7
MH
384start-sanitize-d10v
385Tue Aug 6 12:58:03 1996 Martin M. Hunt <hunt@pizza.cygnus.com>
386
387 * config/tc-d10v.c: Added code to support 32-bit fixups for stabs.
388
389end-sanitize-d10v
6a8e0036
JL
390Tue Aug 6 11:15:26 1996 Jeffrey A Law (law@cygnus.com)
391
392 * config/tc-h8300.c (get_specific): New operand "size" derived
393 from ".b", ".w" and ".l" extensions. All callers changed. If
394 the base instruction has no operands, then use the size to
395 determine which specific instruction to use.
396
3d7b0c49
ILT
397Mon Aug 5 14:21:10 1996 Ian Lance Taylor <ian@cygnus.com>
398
399 * config/tc-i960.c (mem_fmt): Call parse_expr before emit.
400
10a14e36
ILT
401Fri Aug 2 11:23:31 1996 Ian Lance Taylor <ian@cygnus.com>
402
403 * config/tc-mips.c (md_section_align): Don't change addr if
404 OBJ_ELF.
405
470a679c
JL
406Thu Aug 1 23:51:52 1996 Jeffrey A Law (law@cygnus.com)
407
408 * config/tc-hppa.c: Revert yesterday's changes.
409
b5cf6779
MH
410start-sanitize-d10v
411Wed Jul 31 14:46:11 1996 Martin M. Hunt <hunt@pizza.cygnus.com>
412
413 * config/tc-d10v.c: Disable range checking on 16-bit values.
414
415end-sanitize-d10v
159eb3c0
ILT
416Wed Jul 31 16:27:19 1996 Ian Lance Taylor <ian@cygnus.com>
417
418 * config/tc-m68k.c (m68k_ip): Set ok_arch for every instruction,
419 not just the ones that don't match.
420
37e05f64
MH
421start-sanitize-d10v
422Wed Jul 31 11:45:15 1996 Martin M. Hunt <hunt@pizza.cygnus.com>
423
424 * config/tc-d10v.c: Fixed bugs in short relocs and range checking.
425
426end-sanitize-d10v
c479fc62
JSC
427Wed Jul 31 15:41:42 1996 James G. Smith <jsmith@cygnus.co.uk>
428
429 * config/tc-arm.c: Changed INSN_SIZE to variable insn_size, as
430 pre-cursor to adding Thumb support. Also added cpu_variant flag
431 information to each of the asm_flg structures.
432 (md_parse_option): Updated ARM7 parsing to allow 't' for
433 thumb/halfword support, aswell as 'm' for long multiply.
434 (md_show_usage): Updated help message.
435 (md_assemble): Check that instruction flags are applicated to the
436 current cpu variant.
437 (md_apply_fix3, tc_gen_reloc): Add BFD_RELOC_ARM_OFFSET_IMM8 and
438 BFD_RELOC_ARM_HWLITERAL relocation support for new halfword and
439 signextension instructions.
440 (do_ldst): Generate halfword and signextension variants if
441 mnemonic flags match.
442 (ldst_extend): Do not allow shifts in the offset field of halfword
443 or signextension instructions.
444 (validate_offset_imm): Provide check on halfword and signextension
445 immediate range.
446 (add_to_lit_pool): Merge identical literal pool values.
447
448b5aad
JL
448Tue Jul 30 14:28:23 1996 Jeffrey A Law (law@cygnus.com)
449
450 * config/tc-hppa.c (selector_table): Add 'E' selector.
451 (cons_fix_new_hppa): Don't coke on e_esel.
452 (tc_gen_reloc, SOM version): Handle R_COMP2 when used
453 to help generate exception handling tables.
454 (md_apply_fix): Don't try to apply fixups with an e_esel
455 selector.
456 (hppa_fix_adjustable): Fixups with e_esel selectors
457 are not adjustable.
458
8dfb05cc
ILT
459Tue Jul 30 15:51:41 1996 Ian Lance Taylor <ian@cygnus.com>
460
461 * config/tc-sparc.c (md_pseudo_table): Add 2byte, 4byte, and 8byte
462 pseudo-ops.
463
8544dc03
MH
464start-sanitize-d10v
465Fri Jul 26 11:43:03 1996 Martin M. Hunt <hunt@pizza.cygnus.com>
466
467 * config/tc-d10v.c: Added lots of error checking. Added hacks
468 to support accumulator shifts.
469
470end-sanitize-d10v
5ca547dc
ILT
471Fri Jul 26 11:56:08 1996 Ian Lance Taylor <ian@cygnus.com>
472
473 * symbols.c (S_SET_EXTERNAL): Let .weak override.
474 (S_CLEAR_EXTERNAL): Likewise.
475 (S_SET_WEAK): Remove error; just let .weak override.
476
0ef32559 477start-sanitize-d10v
35ad20a1
MH
478Thu Jul 25 15:22:51 1996 Martin M. Hunt <hunt@pizza.cygnus.com>
479
480 * config/tc-d10v.c (md_assemble): Now handles multiline
481 instructions.
482
7c096652
MH
483Thu Jul 25 12:03:33 1996 Martin M. Hunt <hunt@pizza.cygnus.com>
484
485 * config/tc-d10v.c: Fix packaging bug. Added range checking.
486 Added kludge for divs instruction. Fixed minor problem with
487 multiple text sections.
35ad20a1
MH
488 * config/tc-d10v.h (d10v_cleanup): Change prototype.
489
93050391
MH
490Tue Jul 23 10:49:36 1996 Martin M. Hunt <hunt@pizza.cygnus.com>
491
492 * config/tc-d10v.c (md_apply_fix3): Fix all instruction
493 addresses to be right-shifted by 2.
494
0ef32559
MH
495Mon Jul 22 11:32:36 1996 Martin M. Hunt <hunt@pizza.cygnus.com>
496
497 * config/tc-d10v.c: Many changes to get relocs working.
498 (register_name): No longer creates a symbol for register names.
499 (pre_defined_registers): moved to opcodes/d10v-opc.c.
500 (d10v_insert_operand): Now works correctly for either container.
501 * config/tc-d10v.h (d10v_cleanup): Declare.
502
503end-sanitize-d10v
97aca1bc
ILT
504Mon Jul 22 14:01:33 1996 Ian Lance Taylor <ian@cygnus.com>
505
506 * config/tc-mips.c (tc_gen_reloc): BFD_RELOC_PCREL_HI16_S and
507 BFD_RELOC_PCREL_LO16 are expected to be PC relative.
508
6543a7fb
ILT
509Mon Jul 22 12:46:55 1996 Richard Henderson <rth@tamu.edu>
510
511 * tc-alpha.c: Patches to track current minimum alignment to reduce
512 the number of fragments created with frag_align.
513 (alpha_current_align): New static variable.
514 (s_alpha_text): Reset alignment to 0.
515 (s_alpha_data, s_alpha_rdata, s_alpha_sdata): Likewise.
516 (s_alpha_stringer, s_alpha_space): New functions.
517 (s_alpha_cons, alpha_flush_pending_output): Remove functions.
518 (alpha_cons_align): New function to replace both of them.
519 (emit_insn): Only align if alpha_current_align is less than 2;
520 reset alpha_current_align to 2.
521 (s_alpha_gprel32): Likewise.
522 (s_alpha_section): New function. Basically duplicate the other
523 alpha section change hooks. Only define for ELF.
524 (s_alpha_float_cons): Simplify alignment handling.
525 (md_pseudo_table): Only define "rdata" and "sdata" if OBJ_ECOFF.
526 If OBJ_ELF, define "section", "section.s", "sect", and "sect.s".
527 Don't define the s_alpha_cons pseudo-ops. Do define
528 s_alpha_stringer and s_alpha_space pseudo-ops.
529 (alpha_align): Skip if less than current default alignment. Set
530 default alignment.
531 * tc-alpha.h (md_flush_pending_output): Remove.
532 (md_cons_align): Add.
533
534 * tc-alpha.c: Add oodles of function description comments.
535 (md_bignum_to_chars): Remove; there are no callers.
536 (md_show_usage): Mention some more variants.
537
091221ce
ILT
538Thu Jul 18 15:54:54 1996 Ian Lance Taylor <ian@cygnus.com>
539
0b27ea39
ILT
540 From Andrew Gierth <ANDREWG@microlise.co.uk>:
541 * configure.in (sparc-*-sysv4*): New target.
542 * configure: Rebuild.
543
8dd07a84
ILT
544 * config/tc-sparc.c (md_pseudo_table): Change uahalf, uaword, and
545 uaxword to use s_uacons.
546 (sparc_no_align_cons): New static variable.
547 (s_uacons): New static function.
548 (sparc_cons_align): If sparc_no_align_cons is set, just clear it
549 and return.
550
551 * config/tc-sparc.c (s_common): Remove unused label allocate_bss.
552
cbe7dccb
ILT
553 * configure.in: Add mips-*-irix6* target. Handle Irix 6 like Irix
554 5 with regard to shared libraries.
555 * configure: Rebuild.
556
091221ce
ILT
557 * config/tc-m68k.c (m68k_ip): Use the correct length when
558 allocating space for the unsupported architecture error message.
559
7be9a312 560start-sanitize-d10v
05a8bf33
MM
561Thu Jul 18 12:57:10 1996 Michael Meissner <meissner@tiktok.cygnus.com>
562
563 * configure.in (d10v-*-*): Allow d10v-*-*, don't require d10v-*-elf*.
564
565Wed Jul 17 14:25:13 1996 Martin M. Hunt <hunt@pizza.cygnus.com>
7be9a312
MH
566
567 * config/tc-d10v.c: New file.
568 * config/tc-d10v.h: New file.
569 * configure (d10v-*-elf): New target.
570 * configure.in (d10v-*-elf): New target.
571end-sanitize-d10v
572
10c9620d
MM
573Fri Jul 12 20:54:19 1996 Michael Meissner <meissner@tiktok.cygnus.com>
574
575 * config/tc-ppc.c (md_parse_option): Recognize -K PIC.
576
0ee09671
ILT
577Wed Jul 10 12:39:08 1996 Richard Henderson <rth@tamu.edu>
578
579 * config/tc-alpha.c (alpha_align): Change fill parameter
580 to a pointer. Take NULL as 0 or nop depending on section. Change
581 all callers.
582 (s_alpha_align): Rename local variables.
583
584 * doc/as.texinfo (.align): Document action of omitted
585 fill parameter.
586
3128726c
ILT
587Wed Jul 10 00:23:30 1996 Ian Lance Taylor <ian@cygnus.com>
588
589 * config/tc-ppc.c (md_apply_fix3): Give a useful error message
590 when an unsupported PC relative reloc is seen, rather than calling
591 abort.
592
593 * app.c (do_scrub_chars): Remove not_cpp_line local variable.
594 Instead, check state when '#' comment is seen.
595
7f003b7f
ILT
596Mon Jul 8 14:11:49 1996 Ian Lance Taylor <ian@cygnus.com>
597
a8aed9dd
ILT
598 * config/tc-mips.c (mips_regmask_frag): Only define if OBJ_ELF or
599 OBJ_MAYBE_ELF.
600 (tc_gen_reloc): If fixup was changed to be PC relative, change
601 reloc type accordingly. Use name of reloc in error message.
602
a5a78175
ILT
603 * as.h: Don't define const or volatile.
604 * flonum.h: Don't define const.
605
7f003b7f
ILT
606 * config/tc-m68k.c (tc_gen_reloc): Change the code appropriately
607 if fx_pcrel is set. Correct setting the addend case in the
608 OBJ_ELF case (from Andreas Schwab
609 <schwab@issan.informatik.uni-dortmund.de>).
610 (md_show_usage): Correct -mfc5200 to -m5200.
611
8d20a0a8
C
612Fri Jul 5 10:32:58 1996 J.T. Conklin <jtc@rtl.cygnus.com>
613
910d7df2
C
614 * doc/c-m68k.texi: Document -m5200 flag.
615 * doc/as.texinfo: Likewise.
616
8d20a0a8
C
617 * config/tc-m68k.c (m68k_ip): The coldfire does not support 8x
618 scale factor.
619
c0b34702
ILT
620Fri Jul 5 11:07:24 1996 Ian Lance Taylor <ian@cygnus.com>
621
622 * symbols.c (S_SET_EXTERNAL): Change as_warn to as_bad.
623 (S_CLEAR_EXTERNAL, S_SET_WEAK): Likewise.
624
45c85bcb
ILT
625Thu Jul 4 11:59:46 1996 Ian Lance Taylor <ian@cygnus.com>
626
6624477c
ILT
627 * Makefile.in (VERSION): Set to cygnus-2.7.1.
628
45c85bcb
ILT
629 * Released binutils 2.7.
630
fc636a52
JSC
631Thu Jul 4 10:11:33 1996 James G. Smith <jsmith@cygnus.co.uk>
632
633 * config/tc-mips.c (mips_ip): Only perform range check when
634 dealing with O_constant expressions.
635
d41d2ccc
C
636Wed Jul 3 15:02:21 1996 J.T. Conklin <jtc@rtl.cygnus.com>
637
638 * m68k-parse.h (m68k_register): Add new coldfile control
639 registers.
640
641 * config/tc-m68k.c (mcf5200_control_regs): New variable,
642 array of control registers for the coldfire.
643 (cpu_of_arch): Added mcf5200.
644 (archs): Added mcf5200.
645 (init_table): Add new control registers.
646 (m68k_ip): Added support for new control registers.
647 (m68k_init_after_args): Likewise.
648
649 * config/tc-m68k.c (md_show_usage): Add -m5200 to usage text.
650
5af96dce
ILT
651Wed Jul 3 16:05:50 1996 Ian Lance Taylor <ian@cygnus.com>
652
c5d8f96e
ILT
653 * read.h (is_it_end_of_statement): Declare.
654 * read.c (is_it_end_of_statement): Remove declaration.
655
656 * config/tc-ppc.c (ppc_elf_suffix): Correct parenthesization of ||
657 within &&.
658 (md_assemble): Fix handling of @l with an unsigned constant. Add
659 default case to reloc switch.
660
ac76c7e9
ILT
661 * config/tc-i386.h (AOUT_MACHTYPE): Define as 0 if TE_386BSD.
662
5af96dce
ILT
663 Based on patches from Tom Quiggle <quiggle@sgi.com>:
664 * ecoff.c (last_lineno): New static variable.
665 (add_procedure): Set last_lineno.
666 (ecoff_directive_loc): Likewise.
667 (ecoff_generate_asm_lineno): Likewise.
668 (ecoff_fix_loc): New function.
669 * ecoff.h (ecoff_fix_loc): Declare.
670 * config/tc-mips.c (append_insn): When inserting nops, and using
671 ECOFF debugging, call ecoff_fix_loc.
672
b9bddc84
JL
673Tue Jul 2 23:02:12 1996 Jeffrey A Law (law@cygnus.com)
674
675 * config/tc-h8300.c (build_bytes): If an operand type is
676 marked as SRC_IN_DST retrieve it from the "destination" op.
677
379c2fb4
ILT
678Sat Jun 29 13:38:31 1996 Ian Lance Taylor <ian@cygnus.com>
679
69c1de90
ILT
680 * configure.in (arm-*-riscix*): Set emulation to riscix.
681 * configure: Rebuild.
682 * config/te-riscix.h: New file to define TE_RISCIX.
683
379c2fb4
ILT
684 * config/tc-sh.h (SUB_SEGMENT_ALIGN): Define.
685
686Fri Jun 28 15:14:31 1996 Ian Lance Taylor <ian@cygnus.com>
687
688 * Makefile.in (config.status): Just run config.status as other
689 tools do.
690
c611cd82
SS
691Fri Jun 28 11:09:38 1996 Stan Shebs <shebs@andros.cygnus.com>
692
693 * mpw-config.in (TARGET_OS): Add definition to conf.
694
fbf011f2
ILT
695Thu Jun 27 20:39:40 1996 James G. Smith <jsmith@cygnus.co.uk>
696
697 * config/tc-mips.c (append_insn): Parenthesize
698 cop_interlocks expressions.
699
700Thu Jun 27 12:18:26 1996 Ian Lance Taylor <ian@cygnus.com>
701
702 * listing.c (listing_print): Close the listing file if it is not
703 stdout. Close the other files opened for the listing.
681dbbc0
ILT
704
705 * config/tc-sparc.h (md_cons_align): Define.
706 (sparc_cons_align): Declare.
707 (HANDLE_ALIGN): Define.
708 (sparc_handle_align): Declare.
709 * config/tc-sparc.c (sparc_cons_align): New function.
710 (sparc_handle_align): New function.
711 * read.c (cons_worker): Call md_cons_align if it is defined.
712
713 * as.h (struct frag): Add fr_file and fr_line fields.
714 * frags.c (frag_new): Set fr_file and fr_line.
715 (frag_var): Likewise.
716 (frag_variant): Likewise.
717
7e027ce6
ILT
718 * as.h (struct frag): Remove unused align_mask and align_offset
719 fields.
720
f9b990cd
ILT
721 * listing.c (calc_hex): Offset by fr_fix when examining fr_var.
722 From <uddeborg@carmen.se>.
723
9b4b98bd
ILT
724Wed Jun 26 13:21:34 1996 Ian Lance Taylor <ian@cygnus.com>
725
67b48b58
ILT
726 * configure.in (mips-*-osf*): New target.
727 * configure: Rebuild.
728
9b4b98bd
ILT
729 * config/tc-m68k.c: Add 68ec060 as a synonym for 68060.
730
344a8d61
JSC
731Wed Jun 26 16:23:08 1996 James G. Smith <jsmith@cygnus.co.uk>
732
733 * config/tc-mips.c: Added cop_interlocks, to avoid NOP insertion
734 between co-processor comparisons and branches for the VR4300.
735
1c94de4d
JM
736Mon Jun 24 18:02:50 1996 Jason Molenda (crash@godzilla.cygnus.co.jp)
737
738 * Makefile.in (bindir, libdir, datadir, mandir, infodir, includedir,
739 INSTALL_PROGRAM, INSTALL_DATA): Use autoconf-set values.
740 (docdir): Removed.
741 * configure.in (AC_PREREQ): autoconf 2.5 or higher.
742 * doc/Makefile.in (bindir, libdir, datadir, mandir, infodir,
743 includedir): Use autoconf set values.
744 (docdir): Removed.
745
b290fd25
ILT
746Mon Jun 24 11:58:14 1996 Ian Lance Taylor <ian@cygnus.com>
747
1c94de4d
JM
748 * listing.c (listing_eject): Don't do anything if listing is 0.
749 (listing_list): Likewise.
750 (listing_source_line): Likewise.
751 (listing_title): Don't save title if listing is 0.
752 (listing_source_file): Check listing rather than listing_tail.
753
b290fd25
ILT
754 * configure.in: On alpha*-*-osf*, link against libbfd.a if not
755 using shared libraries.
756 * configure: Rebuild.
757
758Fri Jun 21 18:22:23 1996 Ian Lance Taylor <ian@cygnus.com>
759
760 * config/tc-mips.c (mips_ip): In case 'i'/'j', don't require an
761 absolute expression if a relocation type was specified.
762
644edced
ILT
763Fri Jun 21 17:40:16 1996 Joel Sherrill <joel@merlin.gcs.redstone.army.mil>
764
765 * configure.in: Add support for *-*-rtems* configurations.
766 * configure: Rebuild.
767
df586de2
ILT
768Fri Jun 21 16:01:18 1996 Richard Henderson <rth@tamu.edu>
769
770 * configure.in: Add alpha-*-linuxecoff* target. Use elf for
771 alpha-*-linux* target. Force bfd_gas for alpha-*. Require
772 opcodes library for alpha.
773 * configure: Rebuild with autoconf 2.10.
774 * config/tc-alpha.c: Substantial rewrite to add ELF support and
775 use new opcode table.
776 * config/tc-alpha.h (md_undefined_symbol): Don't define.
777 (LOCAL_LABEL): Define differently if OBJ_ELF.
778 (FAKE_LABEL_NAME): Define if OBJ_ELF.
779 * config/alpha-opcode.h: Remove.
780 * config/obj-elf.h: If TC_ALPHA, define ECOFF_DEBUGGING.
781 * Makefile.in (TARG_CPU_DEP_alpha): Depend upon
782 include/opcode/alpha.h rather than config/alpha-opcode.h.
783
7ca8e36e
ILT
784Thu Jun 20 19:10:28 1996 Ian Lance Taylor <ian@cygnus.com>
785
edec3111
ILT
786 * config/obj-aout.c (obj_emit_relocations): Give an error if the
787 relocation symbol was not resolved.
788 * config/obj-coff.c (do_relocs_for): Likewise.
789
7ca8e36e
ILT
790 * write.c (adjust_reloc_syms): Refetch the symbol section after
791 calling S_GET_VALUE, since it may have changed.
792
793 * expr.c (struct expr_symbol_line): Define.
794 (expr_symbol_lines): New static variable.
795 (make_expr_symbol): Add entry to expr_symbol_lines.
796 (expr_symbol_where): New function.
797 * expr.h: Use extern on function declarations.
798 (expr_symbol_where): Declare.
799 * symbols.c (resolve_symbol_value): Try to use expr_symbol_where
800 rather than printing the meaningless name of an expression
801 symbol.
802
214f540d
KR
803Thu Jun 20 15:57:41 1996 Ken Raeburn <raeburn@cygnus.com>
804
805 * config/tc-i386.c (md_number_to_chars): Deleted.
806 * config/tc-i386.h (md_number_to_chars): New macro.
807
808 * config/tc-alpha.c (build_operate_n, build_mem): Moved earlier in
809 the file.
810 (load_symbol_address, load_expression): Use build_mem.
811 (build_operate): New function.
812 (emit_addq_r): Use it.
813
814 Wed Mar 13 22:14:14 1996 Pat Rankin <rankin@eql.caltech.edu>
815
816 * symbols.c (colon): #if VMS, use S_SET_OTHER to store `const_flag'.
817
818 Tue Mar 5 14:31:45 1996 Pat Rankin <rankin@eql.caltech.edu>
819
820 * config/tc-vax.h (NOP_OPCODE): Define.
821
822 Sun Feb 4 21:01:03 1996 Pat Rankin <rankin@eql.caltech.edu>
823
824 * config/obj-vms.h (S_IS_COMMON): Define.
825 (S_IS_LOCAL): Check for \002 as well as \001.
826 (LONGWORD_ALIGNMENT): New macro.
827 (SUB_SEGMENT_ALIGN): Use it.
828
829 Fri Jan 26 17:44:09 1996 Pat Rankin <rankin@eql.caltech.edu>
830
831 * config/vms-conf.h: Reconcile with conf.in.
832
7b9b1eb2
ILT
833Wed Jun 19 11:31:50 1996 Ian Lance Taylor <ian@cygnus.com>
834
793f9558
ILT
835 * write.c (is_dnrange): Only define if TC_GENERIC_RELAX_TABLE is
836 defined.
837
84577dde
ILT
838 * doc/as.texinfo: Document that any number of hex digits can
839 follow \x.
840
0d6cae1e
ILT
841 * as.c (struct defsym_list): Define.
842 (defsyms): New static variable.
843 (parse_args): Just put --defsym arguments on defsyms list, rather
844 than defining them.
845 (main): Define defsyms after output file is created.
846
6e3f7f1b
ILT
847 * config/tc-m68k.c (m68k_ip): Reject PRE and POST indexing mode on
848 cpu32. From Eric Norum <Eric.Norum@usask.ca>.
849
8095b665
ILT
850 * config/tc-mips.c (mips_ip): In cases 'I', 'i', and 'j', set
851 insn_error rather than calling check_absolute_expr.
852
853 * as.c (emulation_name): Remove unused static variable.
854 (default_emul_bfd_name): Add return NULL to avoid warning.
855 * ecoff.c (ecoff_stab): Remove unused variables name and
856 name_end.
857 * frags.c (frag_new): Remove unused variable tmp.
858 * hash.c (hash_grow): Parenthesize + within <<.
859 (hash_print_statistics): Use %lu, not %d, to print unsigned
860 long variables.
861 * messages.c: Include "libiberty.h".
862 (fprint_value): Add cast to avoid printf warning.
863 (sprint_value): Likewise.
864 * read.c: Include "ecoff.h".
865 (emit_expr): Add casts to avoid printf warnings.
866 * read.h: Use extern for function declarations.
867 (pop_insert): Declare.
868 * stabs.c: Include "ecoff.h".
869 * subsegs.c (subseg_set_rest): Remove unused variables tmp,
870 former_last_fragP, and new_fragP.
871 * subsegs.h (subsegs_print_statistics): Declare.
872 * symbols.c (debug_verify_symchain): Change macro to discard
873 arguments.
874 * write.c (dump_section_relocs): Likewise.
875 * write.h: Use extern for function declarations.
876 (write_print_statistics): Declare.
877 * config/e-mipsecoff.c (mipsecoff_bfd_name): Return NULL to avoid
878 warning.
879 * config/e-mipself.c (mipself_bfd_name): Likewise.
880 * config/obj-elf.h (elf_ecoff_set_ext): Declare.
881
9ee759fc
ILT
882 * config/tc-sparc.h (TC_RELOC_RTSYM_LOC_FIXUP): If OBJ_ELF, always
883 emit relocations against external symbols.
884
faa3f539
ILT
885 * config/tc-alpha.c (tc_gen_reloc): Output a sensible error
886 message if bfd_reloc_type_lookup fails, rather than calling
887 assert.
888
7b9b1eb2
ILT
889 * config/tc-alpha.c (alpha_force_relocation): Add
890 BFD_RELOC_12_PCREL to switch.
891
892Tue Jun 18 20:29:57 1996 Doug Evans <dje@canuck.cygnus.com>
893
894 * config/tc-i386.h (LOCAL_LABEL,FAKE_LABEL_NAME): Use defaults for
895 TE_PE (Lfoo, not .Lfoo).
896
d9453233
ILT
897Tue Jun 18 17:13:33 1996 Ian Lance Taylor <ian@cygnus.com>
898
24b018ee
ILT
899 * read.c (s_fill): Don't warn about a zero repeat count.
900
c674dcaa
ILT
901 * config/tc-mips.c (mips_ip): Don't warn about using AT as a
902 coprocessor register.
903
d9453233
ILT
904 * config/tc-i386.c (md_assemble): When checking the size of a
905 register to set the size of an instruction, do a bitwise and with
906 Reg8 and Reg16 rather than requiring the type to be exactly Reg8
907 or Reg16.
908
3d0afe12
JL
909Tue Jun 18 13:19:51 1996 Jeffrey A. Law <law@rtl.cygnus.com>
910
911 * config/tc-h8300.c (parse_reg): Tweak error messages.
912 (build_bytes): Likewise.
913 (skip_colonthing): Handle :32 suffix.
914 (get_specific): Promote L_24 to L_32 if it makes a match.
915 Don't always promote L_8 to L_16.
916 (do_a_fix_imm): Clean up L_32 and L_24 handling.
917
3d0afe12
JL
918 * config/tc-h8300.c (Smode): New variable.
919 (h8300hmode): Turn off Hmode.
920 (h8300smode): New function. Turn on Smode and Hmode.
921 (md_pseudo_table): New ".h8300s" pseudo-op.
922 (parse_reg): Handle "exr" register.
923 (get_operand): Handle bizarre syntax for "stm.l" and "ldm.l".
924 Handle "mach" and "machl" operands for ldmac.
925 (get_specific): Handle "stm.l" and "ldm.l".
926 (build_bytes): Handle "stm.l" and "ldm.l"; handle MACREG operands.
927 * config/tc-h8300.h (COFF_MAGIC): Handle H8/S magic number.
928 (Smode): Declare.
929
370181a2
C
930Mon Jun 17 15:50:53 1996 J.T. Conklin <jtc@rtl.cygnus.com>
931
932 * doc/as.texinfo: Reorder chapter of machine dependent options so
933 that it is sorted by chip name.
934
935 * doc/as.texinfo: Use consistant spelling of Vax.
936 * doc/c-vax.texi: Likewise.
937
02d4dd87
JL
938Mon Jun 17 11:26:56 1996 Jeffrey A. Law <law@rtl.cygnus.com>
939
940 * config/tc-hppa.c (md_pseudo_table): Add ".begin_try" and ".end_try"
941 pseudo ops.
942 (tc_gen_reloc, SOM version): Handle R_BEGIN_TRY and R_END_TRY.
943 (md_apply_fix): Likewise.
944 (pa_try): New function.
945 (hppa_force_relocation): Force relocs for BEGIN_TRY and END_TRY.
946
b81231b7
JL
947Sun Jun 16 22:57:47 1996 Jeffrey A. Law <law@rtl.cygnus.com>
948
949 * config/tc-hppa.c (md_pseudo_table): Add ".level" pseudo op.
950 (pa_level): New function.
951
fe8d0ff3
ILT
952Fri Jun 14 20:06:44 1996 Ian Lance Taylor <ian@cygnus.com>
953
954 * listing.c (listing_newline): Don't do anything if listing is 0.
955
956Thu Jun 13 17:50:54 1996 Ian Lance Taylor <ian@cygnus.com>
957
958 * subsegs.c (section_symbol): If symbol_table_frozen is set, call
959 symbol_create, not symbol_new.
960
9bec2a42
ILT
961Wed Jun 12 14:10:44 1996 Ian Lance Taylor <ian@cygnus.com>
962
963 * write.c (adjust_reloc_syms): Don't set sy_used_in_reloc for an
964 absolute symbol unless TC_FORCE_RELOCATION returns true.
965
966 * config/obj-coff.c (previous_file_symbol): Remove BFD_ASSEMBLER
967 version.
968 (c_dot_file_symbol): BFD_ASSEMBLER version: Don't set the value of
969 the symbol to a pointer. Don't set previous_file_symbol.
970 Simplify symbol list rearrangement.
971 (coff_frob_symbol): Don't do anything with C_FILE symbols.
972 (coff_adjust_symtab): Don't check previous_file_symbol.
973
c992cf9b
MM
974Mon Jun 10 14:52:29 1996 Michael Meissner <meissner@tiktok.cygnus.com>
975
976 * config/tc-ppc.c (ppc_elf_lcomm): New function for .lcomm
977 directive.
978 (md_pseudo_table): Add ppc_elf_lcomm.
979
1ba76615 980Mon Jun 10 11:45:51 1996 Ian Lance Taylor <ian@cygnus.com>
92e61d31
ILT
981
982 * config/tc-m68k.c (m68k_ip): Accept ABSL for 'O', so that `bfextu
983 d0{24:1},d0' works without an immediate prefix on the bit numbers.
984 (md_begin): Add digits to alt_notend_table.
985 (md_parse_option): Make s a const pointer.
1ba76615 986
b91e85c2
ILT
987 * config/tc-sparc.c (md_pseudo_table): Add "empty".
988 (s_empty): New static function.
989
e789e620
ILT
990 * config/obj-coff.c (struct filename_list): Only define if not
991 BFD_ASSEMBLER.
992 (filename_list_head, filename_list_tail): Likewise.
993 (c_section_symbol): Remove unused BFD_ASSEMBLER version.
994 (obj_coff_endef, BFD_ASSEMBLER version): Don't set the debugging
995 flag for C_MOS, C_MOE, C_MOU, or C_EOS symbols, since they should
996 have a section of N_ABS rather than N_DEBUG. If we do a merge,
997 remove the new symbol from the list.
998 (obj_coff_endef, both versions): Call tag_insert even if there is
999 an old symbol with the same name, if the old symbol does not
1000 happen to be a tag.
1001 (coff_frob_symbol): Check SF_GET_TAG, C_EOF, and C_FILE outside of
1002 the SF_GET_DEBUG condition. Don't call SA_SET_SYM_ENDNDX with a
1003 symbol that will be moved to the end of the symbol list.
1004 (coff_adjust_section_syms): Always call section_symbol for .text,
1005 .data, and .bss.
1006 (coff_frob_section): Likewise. Also, remove unused variable
1007 strname.
1008
0670452e
ILT
1009 * config/tc-ns32k.c (convert_iif): Call frag_grow rather than
1010 manipulating frags directly.
1011 (md_number_to_field): Adjust mem_ptr correctly if ENDIAN is
1012 defined.
1013
41822c41
ILT
1014 * app.c (do_scrub_chars): If '/' is LINE_COMMENT_START, check
1015 whether the next character is '*' before checking whether we are
1016 at the start of a line. Permit LINE_COMMENT_START to start a
1017 comment in state 1 (seen some whitespace) as well, to match the
1018 documentation.
1019
1ba76615
ILT
1020 * gasp.c (do_align): Permit a fill value for .align.
1021
ed381b67
JW
1022Wed Jun 5 17:09:26 1996 Ian Lance Taylor <ian@cygnus.com>
1023
1024 * read.c (next_char_of_string): Warn if a newline is seen in the
1025 middle of a string. Call bump_line_counters when appropriate.
1026
1027Wed Jun 5 17:08:36 1996 Richard Henderson <rth@tamu.edu>
1028
1029 * symbols.c (colon): Use LOCAL_LABEL.
1030
2c7aeec6
TT
1031Tue Jun 4 10:55:16 1996 Tom Tromey <tromey@csk3.cygnus.com>
1032
1033 * Makefile.in (install): Don't check to see if tooldir exists.
1034 Make $(tooldir) and $(tooldir)/bin.
1035
527b8324
MM
1036Tue Jun 4 10:14:53 1996 Michael Meissner <meissner@tiktok.cygnus.com>
1037
1038 * config/ppc-sol.mt (TDEFINES): Don't turn on -mregnames by
1039 default.
1040
3b426f5a
ILT
1041Mon Jun 3 11:34:41 1996 Ian Lance Taylor <ian@cygnus.com>
1042
1043 * config/tc-mips.c (mips_ip): Don't call as_warn if we are setting
1044 insn_error. Don't put the string "ERROR" in insn_error. Set
1045 insn_error rather than calling as_warn for an unsupported opcode.
1046
9c44af60
ILT
1047Sat Jun 1 21:51:55 1996 Ian Lance Taylor <ian@cygnus.com>
1048
1049 * config/tc-mips.c (md_parse_option): Check for a 64 bit format
1050 before permitting -64.
1051 * output-file.c (output_file_create): Remove duplicate
1052 bfd_perror.
1053
98bfd087
ILT
1054Fri May 31 01:08:06 1996 Ian Lance Taylor <ian@cygnus.com>
1055
87178180
ILT
1056 * config/tc-mips.c (md_begin): If -64, create a .MIPS.options
1057 section rather than a .reginfo section.
1058 (mips_elf_final_processing): If -64, write out 64 bit RegInfo
1059 information.
1060
98bfd087
ILT
1061 * config/tc-mips.c (load_register): If mips_isa < 3, permit a 32
1062 bit value with the high bit set.
1063
b95bee13
ILT
1064Thu May 30 19:00:19 1996 Ian Lance Taylor <ian@cygnus.com>
1065
1066 * read.c (s_lcomm): Set section flags for .sbss section.
1067
1068 * config/tc-mips.c (mips_64): New static variable.
1069 (mips_target_format): If mips_64, return elf64 targets rather than
1070 elf32 ones.
1071 (md_longopts): Add "32" and "64".
1072 (md_parse_option): Handle -32 and -64.
1073 (md_show_usage): Mention -32 and -64.
1074 (cons_fix_new_mips): If mips_64, don't convert an 8 byte reloc to
1075 a 4 byte one.
1076
1facd5f0
MM
1077Thu May 30 10:36:19 1996 Michael Meissner <meissner@tiktok.cygnus.com>
1078
98bfd087
ILT
1079 * config/tc-ppc.c (comment_chars): Make '!' a comment character
1080 for Solaris compatibility.
d0e1c803 1081
1facd5f0
MM
1082 * stabs.c (s_stab_generic): Under PowerPC Solaris, convert a
1083 .stabd with 4 arguments into a .stabn.
1084
a40aee38
ILT
1085Wed May 29 16:43:16 1996 Ian Lance Taylor <ian@cygnus.com>
1086
1087 * config/tc-mips.c (macro): When passing X_add_number to
1088 macro_build, cast it to int first.
1089
943bdfdc
ILT
1090Tue May 28 13:29:39 1996 Ian Lance Taylor <ian@cygnus.com>
1091
54388b85
ILT
1092 * config/tc-z8k.c (md_apply_fix): Handle fx_r_type of 0, as
1093 created by emit_expr.
1094
943bdfdc
ILT
1095 * symbols.c (symbol_create): If bfd_make_empty_symbol fails, call
1096 as_perror rather than assert.
1097
9b61d62b
ILT
1098Fri May 24 18:24:11 1996 Ian Lance Taylor <ian@cygnus.com>
1099
1100 * config/tc-mips.c (mips_ip): Mark sections created to hold
1101 floating point information as read only.
1102
e30c0076
MM
1103Fri May 24 12:07:54 1996 David Edelsohn <edelsohn@mhpcc.edu>
1104
1105 * config/tc-ppc.c (ppc_set_cpu): Change defaults to match AIX.
1106
63cafcef
MM
1107Thu May 23 17:34:24 1996 Michael Meissner <meissner@tiktok.cygnus.com>
1108
adeab39b
MM
1109 * read.c (potable): Add .skip as a synonym for .space.
1110
63cafcef
MM
1111 * stabs.c (s_stab_generic): For PowerPC ELF, allow .stabd to take
1112 4 arguments, providing the 4th argument is 0, to allow
1113 compatibility with the Solaris assembler.
1114
1115Thu May 16 15:51:48 1996 Ian Lance Taylor <ian@cygnus.com>
1116
1117 * config/tc-sh.h (struct sh_segment_info_type): Define.
1118 (TC_SEGMENT_INFO_TYPE): Define.
1119 (sh_frob_label): Declare.
1120 (tc_frob_label): Define.
1121 (sh_flush_pending_output): Declare.
1122 (md_flush_pending_output): Define.
1123 * config/tc-sh.c (md_assemble): If relaxing, emit a R_SH_CODE
1124 reloc before the instruction if necessary.
1125 (sh_frob_label): New function.
1126 (sh_flush_pending_output): New function.
1127 (sh_coff_frob_file): Ignore ALIGN, CODE, DATA, and LABEL relocs
1128 when looking for the reloc for the target of .uses.
1129 (md_convert_frag): Fix printf format (%0xlx to 0x%lx).
1130 (sh_force_relocation): Force CODE, DATA, and LABEL relocs to be
1131 emitted.
1132 (md_apply_fix): Ignore CODE, DATA, and LABEL relocs.
1133 (sh_coff_reloc_mangle): Force CODE, DATA, and LABEL relocs to use
1134 the absolute symbol.
1135
1136 * subsegs.h (segment_info_type): Add tc_segment_info_data field if
1137 TC_SEGMENT_INFO_TYPE is defined.
1138
3ea36b53
ILT
1139Wed May 15 12:23:53 1996 Ian Lance Taylor <ian@cygnus.com>
1140
1141 * config/tc-i386.c (md_assemble): Make sure the opcode suffix
1142 matches the register size.
1143
ecb9b1ca
JL
1144Wed May 15 08:33:37 1996 Jeffrey A Law (law@cygnus.com)
1145
1146 * config/obj-coff.c (count_entries_in_chain): Ignore Fixups with
1147 fx_done set.
1148 (do_relocs_for): Likewise.
1149 (fixup_segment): Don't just quit if linkrelax is set. Try to
1150 apply non pc-relative sym1-sym2 fixups, even if linkrelax is
1151 nonzero.
1152
f122568e
MM
1153Fri May 10 14:16:59 1996 Michael Meissner <meissner@tiktok.cygnus.com>
1154
1155 * config/tc-ppc.c (ppc_elf_validate_fix): Allow GOT and section
1156 relative relocations with -mrelocatable. Also allow unfixed
1157 relocs in .ex_shared.
1158
6648d3ae
ILT
1159Tue May 7 11:24:10 1996 Ian Lance Taylor <ian@cygnus.com>
1160
1161 * config/obj-coff.c (yank_symbols): Check that FNAME_OFFSET is
1162 non-zero before assuming this is a long file name.
1163 (w_strings): Likewise.
1164 (c_dot_file_symbol): Set FNAME_OFFSET to 1 for a long file name.
1165
1166 * config/obj-coff.c (w_strings): Move declaration of i inside
1167 #ifdef block which uses it.
1168
c47fc401
JL
1169Tue May 7 00:49:58 1996 Jeffrey A Law (law@cygnus.com)
1170
1171 * config/tc-h8300.c (do_a_fix_imm): Rename last argument to
1172 "relaxmode". Output relocs which identify various relaxing
1173 possibilities for mov.[bwl] instructions.
1174 (build_bytes): Pass in a relaxing mode to do_a_fix_imm.
1175
9ea82743
DE
1176Mon May 6 15:26:28 1996 Doug Evans <dje@canuck.cygnus.com>
1177
1178 * config/tc-arm.h (TC_HANDLES_FX_DONE): Define.
1179 (MD_APPLY_FIX3): Define.
1180 * config/tc-arm.c (my_get_expression): Only watch for bad segments
1181 if OBJ_AOUT.
1182 (md_apply_fix3): Renamed from md_apply_fix.
1183 If pcrel reloc and symbol is in different section, undo effects
1184 of md_pcrel_from.
1185
ab7db73b
JL
1186Sat May 4 12:49:35 1996 Jeffrey A Law (law@cygnus.com)
1187
1188 * config/tc-hppa.c (hppa_fix_adjustable): Don't adjust
1189 any reloc with an LR% or RR% field selector for SOM.
1190
c9324fcd
ILT
1191Sat May 4 11:26:19 1996 Ian Lance Taylor <ian@cygnus.com>
1192
1193 * Makefile.in: Add subsegs.h to appropriate TARG_CPU_DEP_*
1194 variables.
1195
d4d7d98c
ILT
1196Fri May 3 17:58:31 1996 Ian Lance Taylor <ian@cygnus.com>
1197
1198 * config/obj-coff.c (coff_frob_symbol): Don't merge a symbol with
1199 SF_GET_STATICS set.
1200 (yank_symbols): Likewise.
1201
8fe2ec52
ILT
1202Wed May 1 13:38:17 1996 Ian Lance Taylor <ian@cygnus.com>
1203
7681eb9d
ILT
1204 * subsegs.h (segment_info_type): If MANY_SEGMENTS and not
1205 BFD_ASSEMBLER, add name field.
ba97ba7e
ILT
1206 * config/obj-coff.c: Include "libiberty.h".
1207 (coff_header_append): Handle long section names.
7681eb9d
ILT
1208 (crawl_symbols): Just use the name field for the symbol name,
1209 without worrying about null byte termination.
1210 (w_strings): Handle long section names.
1211 (write_object_file): Likewise. Also, use the name field, rather
1212 than scnhdr.s_name.
1213 (obj_coff_add_segment): Permit long section names.
1214 (obj_coff_init_stab_section): Use the name field, rather than
1215 scnhdr.s_name.
1216 (adjust_stab_section): Likewise.
1217 * config/te-pe.h (COFF_LONG_SECTION_NAMES): Define.
1218
8fe2ec52
ILT
1219 * config/tc-i960.c (brtab_emit): Don't set fx_im_disp field.
1220 (mem_fmt): Likewise.
1221 (md_apply_fix): Don't check fx_im_disp field.
1222
556829bc
ILT
1223Thu Apr 25 11:39:51 1996 Ian Lance Taylor <ian@cygnus.com>
1224
f9e36fc6
ILT
1225 * configure.in: Add * after sparc*-*-vxworks.
1226 * configure: Rebuild.
1227
556829bc
ILT
1228 * app.c (do_scrub_begin): If tc_comment_chars is not defined,
1229 define it to comment_chars. Use tc_comment_chars rather than
1230 comment_chars.
1231 (do_scrub_chars): Use tc_comment_chars rather than comment_chars.
1232 * config/tc-m68k.h (tc_comment_chars): Define.
1233 (m68k_comment_chars): Declare.
1234 * config/tc-m68k.c (m68k_comment_chars): Rename from
1235 comment_chars. Change into a pointer rather than an array.
1236 (md_longopts): Add "bitwise-or".
1237 (md_parse_option): Handle OPTION_BITWISE_OR.
1238 (md_show_usage): Mention --bitwise-or.
1239 * doc/c-m68k.texi: Document --bitwise-or.
1240
116bf30f
ILT
1241Wed Apr 24 11:28:38 1996 Ian Lance Taylor <ian@cygnus.com>
1242
912e4245
ILT
1243 * config/tc-m68k.c (m68k_ip): Prevent attempts to use long offsets
1244 in 68000 mode.
1245
116bf30f
ILT
1246 * config/obj-coff.c (obj_coff_section): BFD_ASSEMBLER version:
1247 call demand_empty_rest_of_line. Non BFD_ASSEMBLER version:
1248 correct handling of input line pointer, and call
1249 demand_empty_rest_of_line.
1250
58c9a12b
DE
1251Mon Apr 22 18:02:37 1996 Doug Evans <dje@blues.cygnus.com>
1252
1253 * config/tc-sparc.c (in_bitfield_range): New static function.
1254 (sparc_ip): New cases X,Y. Use SPARC_OPCODE_ARCH_V9_P.
1255 (md_apply_fix, cases BFD_RELOC_32_PCREL_S2,
1256 BFD_RELOC_SPARC_{WDISP16,WDISP19}): Fix undefined code.
1257 (md_apply_fix): New cases BFD_RELOC_SPARC_[56].
1258 (tc_gen_reloc): New cases BFD_RELOC_SPARC_[56].
1259
ff406bd3
ILT
1260Thu Apr 18 18:58:33 1996 Ian Lance Taylor <ian@cygnus.com>
1261
1262 * config/obj-coff.c: BFD_ASSEMBLER:
1263 (coff_last_bf): New static variable.
1264 (coff_frob_symbol): Set endndx of a .bf symbol.
1265 Non BFD_ASSEMBLER:
1266 (obj_coff_endef): Call SF_SET_PROCESS on a .bf symbol.
1267 (last_bfP): New static variable.
1268 (yank_symbols): Set endndx of a .bf symbol.
1269
47d12b2c
MM
1270Thu Apr 18 11:53:58 1996 Michael Meissner <meissner@tiktok.cygnus.com>
1271
1272 * config/tc-ppc.c (md_parse_option): Add support for Solaris's -le
1273 and -s options. Add -be for good measure.
1274
3ce7f41a
ILT
1275Wed Apr 17 12:31:01 1996 Ian Lance Taylor <ian@cygnus.com>
1276
1277 * read.c (s_space): Support non-constant fill value. Handle fill
1278 value correctly for a size other than 1.
1279
865447db
DE
1280Tue Apr 16 15:17:40 1996 Doug Evans <dje@canuck.cygnus.com>
1281
1282 * config/tc-arm.c (my_get_float_expression): Update call to
1283 gen_to_words, X_PRECISION changed from 6 to 5.
1284
159e6ef8
MM
1285Tue Apr 16 10:25:42 1996 Michael Meissner <meissner@tiktok.cygnus.com>
1286
1287 * config/tc-ppc.c (register_name,reg_name_search): Move register
1288 name lookup from PE specific code to all targets. Add support for
1289 -mregnames/-mno-regnames to control whether register names are
1290 expanded or not.
1291 (md_assemble): Call register_name for all platforms.
1292 (md_parse_option): Add support for -mregnames/-mno-regnames.
1293
1294 * configure.in (powerpcle*-*-solaris): Add support.
1295 (powerpc*-*-linux): Ditto.
1296 * configure: Regenerate.
1297
1298 * config/ppc-sol.mt: New config file for PowerPC Solaris.
1299
7a15a226
ILT
1300Mon Apr 15 12:26:33 1996 Ian Lance Taylor <ian@cygnus.com>
1301
aa9e2dbe
ILT
1302 * config/tc-mips.c (mips_frob_file): Permit multiple %hi relocs to
1303 be associated with a single %lo reloc.
1304
7a15a226
ILT
1305 * config/tc-mips.c (load_address): Cast X_add_number to valueT
1306 before comparing against MAX_GPREL_OFFSET, so that negative
1307 numbers are handled correctly.
1308 (macro): Likewise.
1309
65feb78d
ILT
1310Thu Apr 11 12:39:02 1996 Ian Lance Taylor <ian@cygnus.com>
1311
ed94c2b8
ILT
1312 * config/tc-sparc.c (last_insn): New static variable.
1313 (md_assemble): Warn about putting floating point branches in a
1314 delay slot. If architecture is less than v9, insert NOP
1315 instructions between floating point instructions and floating
1316 point branches. (The SunOS assembler does both these operations.)
1317 Save the last instruction opcode.
1318 (sparc_ip): Add pinsn parameter. Change caller.
1319
65feb78d
ILT
1320 * config/tc-m68k.c (md_estimate_size_before_relax): Correct check
1321 for byte jump to next instruction to skip empty frags.
1322
456c301f
ILT
1323Wed Apr 10 16:48:12 1996 Ian Lance Taylor <ian@cygnus.com>
1324
1325 * config/tc-alpha.c (alpha_ip): If we are going to call emit_add64
1326 for addq with a 16 bit signed value, just emit a lda instruction
1327 instead.
1328
b3ed89e8
JL
1329Wed Apr 10 14:34:49 1996 Jeffrey A Law (law@cygnus.com)
1330
1331 * config/tc-h8300.c (do_a_fix_imm): Don't cut off high bits
1332 of a 32bit operand.
1333
b4cb4ea2
ILT
1334Mon Apr 8 14:42:53 1996 Ian Lance Taylor <ian@cygnus.com>
1335
1336 * configure.in: Permit --enable-shared to specify a list of
1337 directories.
1338 * configure: Rebuild.
1339
dcb195f8
JL
1340Fri Apr 5 17:01:35 1996 Jeffrey A Law (law@cygnus.com)
1341
1342 * config/tc-h8300.c (get_specific): Remove some #if 0 code.
1343 (build_bytes): Remove all ABSMOV related code; it's unnecessary.
1344
13e4a17e
ILT
1345Fri Apr 5 15:13:10 1996 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
1346
1347 * config/atof-ieee.c: Fix handling of denormalized extended
1348 precision numbers and overflow/underflow detection.
1349 (MAX_PRECISION, X_PRECISION, P_PRECISION): Changed from 6 to 5, to
1350 not include the 16 bit gap in the m68k extended precision format.
1351
2ae5f50b
ILT
1352Fri Apr 5 14:29:23 1996 Ian Lance Taylor <ian@cygnus.com>
1353
1354 * configure.in: Add i386-*-freebsdelf* target; from John Polstra
1355 <jdp@polstra.com>.
1356 * configure: Rebuild.
1357
54ea771f
JSC
1358Fri Apr 5 18:39:28 1996 James G. Smith <jsmith@cygnus.co.uk>
1359
1360 * config/tc-mips.c: Allow non-zero offsets from .sdata symbols to
1361 be accessed using the $gp register.
1362 * config/tc-mips.h (MAX_GPREL_OFFSET): Added.
1363
65b12103
DE
1364Wed Apr 3 10:56:14 1996 Doug Evans <dje@canuck.cygnus.com>
1365
1366 * config/tc-sparc.c (sparc_md_end): Set bfd machine number to
1367 bfd_mach_sparc_sparclet if current_architecture is sparclet.
1368
2271578d
ILT
1369Mon Apr 1 16:55:44 1996 Ian Lance Taylor <ian@cygnus.com>
1370
1371 * read.c (get_line_sb): Bump line counters based on
1372 input_line_pointer[-1], not *input_line_pointer. Don't bother to
1373 call LISTING_NEWLINE.
1374 (s_macro): Don't call demand_empty_rest_of_line.
1375 * app.c (do_scrub_chars): When handling C style comments, unget
1376 ch2 rather than ch.
1377
7d3741ed
ILT
1378Fri Mar 29 16:15:06 1996 Ian Lance Taylor <ian@cygnus.com>
1379
1380 * read.h (enum linkonce_type): Define.
1381 (s_linkonce): Declare.
1382 * read.c (potable): Add "linkonce".
1383 (s_linkonce): New function.
1384 * subsegs.h (segment_info_type): Add linkonce field to
1385 MANY_SEGMENTS && ! BFD_ASSEMBLER section.
1386 * config/obj-coff.h (obj_handle_link_once): Define if TE_PE.
1387 (obj_coff_pe_handle_link_once): Declare if TE_PE.
1388 * config/obj-coff.c: If TE_PE and not BFD_ASSEMBLER, #include
1389 "coff/pe.h".
1390 (obj_coff_pe_handle_link_once): New function, defined if TE_PE.
1391 (c_section_symbol): If TE_PE, set the x_comdat field in the aux
1392 entry based on the linkonce field in segment_info.
1393 * doc/as.texinfo: Document .linkonce.
1394
0c203340
C
1395Fri Mar 29 11:31:27 1996 J.T. Conklin (jtc@lisa.cygnus.com)
1396
1397 * doc/as.1: Changed to be recognized by catman -w on Solaris.
1398
867a58b3
ILT
1399Thu Mar 28 15:27:47 1996 Ian Lance Taylor <ian@cygnus.com>
1400
3197da91
ILT
1401 * stabs.c (s_stab_generic): Call the listing functions before
1402 doing the rest of the processing, which may involve freeing the
1403 string. Pass string, not string + stroff, to OBJ_PROCESS_STAB in
1404 SEPARATE_STAB_SECTIONS case.
1405
3c071b9f
ILT
1406 * config/tc-hppa.c: Remove nested comment.
1407 (tc_gen_reloc): Move label done inside the ifdef in which it is
1408 used.
1409 (md_apply_fix): Pass pointers to correct types to libhppa.h
1410 functions. Always return a value.
1411
867a58b3
ILT
1412 * config/tc-mips.h (tc_frob_file): Define.
1413 (mips_frob_file): Declare.
1414 * config/tc-mips.c (struct mips_hi_fixup): Define.
1415 (mips_hi_fixup_list): New static variable.
1416 (imm_unmatched_hi): New static variable.
1417 (md_assemble): Clear imm_reloc, imm_unmatched_hi, and
1418 offset_reloc. Pass imm_unmatched_hi to append_insn.
1419 (append_insn): Add unmatched_hi parameter. If it is set, add the
1420 new fixup to mips_hi_fixup_list. Change all callers.
1421 (mips_ip): Set imm_unmatched_hi when appropriate.
1422 (mips_frob_file): New function.
1423
d0352cbb
DE
1424Thu Mar 28 11:47:59 1996 Doug Evans <dje@canuck.cygnus.com>
1425
1426 * configure.in (sparc-*-solaris2*): Renamed from sparc*-*-solaris2*.
1427 * configure: Regenerated.
1428
4f74c042
ILT
1429Tue Mar 26 18:19:12 1996 Ian Lance Taylor <ian@cygnus.com>
1430
1431 * as.c (main): Call bfd_set_error_program_name.
1432
5ba7c0be
ILT
1433Fri Mar 22 11:13:00 1996 Ian Lance Taylor <ian@cygnus.com>
1434
c7a89bde
ILT
1435 * as.h (strdup): Don't declare.
1436 * stabs.c: Include libiberty.h
1437 (get_stab_string_offset): Use xstrdup rather than strdup.
1438 (s_stab_generic): Likewise.
1439 * as.c (parse_args): Likewise.
1440 * read.c (s_mri_sect): Likewise.
1441
5ba7c0be
ILT
1442 * gasp.c (change_base): Recognize \(...) construct documented to
1443 pass through enclosed characters literally through to the output.
1444 (process_assigns): Likewise. Also, be more careful to avoid
1445 looking past the end of the buffer.
1446
1447Thu Mar 21 13:18:43 1996 Ian Lance Taylor <ian@cygnus.com>
1448
1449 * config/tc-i386.c (md_parse_option): If OBJ_ELF, ignore -k for
1450 FreeBSD compatibility. From John Polstra <jdp@polstra.com>.
1451
d1f38e13
ILT
1452Wed Mar 20 18:13:32 1996 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
1453
1454 * doc/as.texinfo, doc/c-i960.texi: Fix typos.
1455
649d87fe
ILT
1456Wed Mar 20 17:05:16 1996 David Mosberger-Tang <davidm@azstarnet.com>
1457
1458 * config/alpha-opcode.h: Added cvtst instruction.
1459
975def01
ILT
1460Mon Mar 18 13:12:46 1996 Ian Lance Taylor <ian@cygnus.com>
1461
1462 * ecoff.c (ecoff_stab): Don't try to make a symbol out of the stab
1463 string. Extract the addend from the result of expression.
1464
fde6018a
ILT
1465Fri Mar 15 17:10:43 1996 Ian Lance Taylor <ian@cygnus.com>
1466
1467 * app.c (do_scrub_chars): If whitespace is seen in state 11, and
1468 LABELS_WITHOUT_COLONS is not defined, and we are not in m68k MRI
1469 mode, change the state to 3 rather than 1.
1470
ee0f488d
ILT
1471Thu Mar 14 18:18:25 1996 Ian Lance Taylor <ian@cygnus.com>
1472
1473 * config/obj-coff.h (C_REGISTER_SECTION): Change from 20 to 50, to
1474 correspond to 11 March change.
1475
9da28504
JL
1476Thu Mar 14 15:27:10 1996 Jeffrey A Law (law@cygnus.com)
1477
1478 * config/tc-h8300.c (build_bytes, MEMIND case): Generate
1479 an R_MEM_INDIRECT reloc rather than R_RELBYTE.
1480
ea2488ad
ILT
1481Tue Mar 12 12:21:10 1996 Ian Lance Taylor <ian@cygnus.com>
1482
1483 * configure: Rebuild with autoconf 2.8.
1484
8fee8bf3
ILT
1485Mon Mar 11 18:57:12 1996 Ian Lance Taylor <ian@cygnus.com>
1486
1487 * config/atof-ieee.c (gen_to_words): Improve handling of
1488 X_PRECISION numbers. Based on patches from Andreas Schwab
1489 <schwab@issan.informatik.uni-dortmund.de>.
1490
a31c2bc7
SC
1491Mon Mar 11 09:59:53 1996 Steve Chamberlain <sac@slash.cygnus.com>
1492
1493 * as.h (SEG_NORMAL, SEG_LIST): Bump segment limit from 10 to 40.
1494 (SEG_LAST): New.
1495 * subsegs.c (MANY_SEGMENTS): Increase segment limit.
1496 * obj-coff.c (seg_N_TYPE, seg_info_off_by_4): Likewise.
1497 (do_relocs_for, w_symbols, obj_coff_add_segment, do_linenos_for,
1498 crawl_symbols, coff_header_append): Loop to SEG_LAST rather than
1499 SEG_E9.
1500
1501Thu Mar 7 15:17:39 1996 Doug Evans <dje@charmed.cygnus.com>
1502
1503 * config/tc-sparc.c (sparc_ip): Handle operand char 'O' (neg reg).
1504
73578b1e
JL
1505Thu Mar 7 09:19:15 1996 Jeffrey A Law (law@cygnus.com)
1506
1507 * config/tc-hppa.c (SUBSEG_MILLI): Define.
1508 (pa_def_subspaces): Add $MILLICODE$.
1509 (pa_spaces_begin): Set section flags for $MILLICODE$.
1510
0c27542f
ILT
1511Wed Mar 6 14:11:30 1996 Ian Lance Taylor <ian@cygnus.com>
1512
6b8ed20d
ILT
1513 * config/obj-elf.c (obj_elf_section): Only SEC_LOAD if the type is
1514 not SHT_NOBITS. Don't tamper with flags based on type if a
1515 special section was found (revert Feb 29 change).
1516
0c27542f
ILT
1517 * config/tc-sh.c (sh_do_align): Only align using the nop pattern
1518 if aligning to a longword boundary or greater.
1519
6a413d6f
JW
1520Tue Mar 5 15:10:43 1996 Jim Wilson <wilson@chestnut.cygnus.com>
1521
1522 * config/tc-sh.c (sh_do_align): Pass 1 not 2 to frag_align.
1523
4b295517
SC
1524Mon Mar 4 20:50:57 1996 Steve Chamberlain <sac@slash.cygnus.com>
1525
1526 * configure.in (i386-*-cygwin32): Don't use bfd_gas.
1527 * configure: Regenerated.
1528
eff5fcda
JL
1529Mon Mar 4 10:13:06 1996 Jeffrey A Law (law@cygnus.com)
1530
421e2c27
JL
1531 * config/tc-hppa.c: Add default definitions for R_N0SEL and
1532 R_N1SEL since they're not defined for old versions of hpux.
1533
eff5fcda
JL
1534 * config/tc-hppa.c (tc_gen_reloc): Fix typo in R_COMP2 code.
1535 Set "sym_ptr_ptr" and "addend" fields to dummy values for
1536 R_N0SEL and R_N1SEL.
1537
bb1013d9
ILT
1538Fri Mar 1 10:20:52 1996 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
1539
d197a7ab
ILT
1540 * flonum-konst.c: Add two more constants for 1e+-2048 and
1541 1e+-4096, and correct the other constants.
1542
bb1013d9
ILT
1543 * symbols.c (resolve_symbol_value): Handle O_logical_not.
1544
30510276
MM
1545Thu Feb 29 13:58:35 1996 Michael Meissner <meissner@tiktok.cygnus.com>
1546
1547 * config/obj-elf.c (obj_elf_section): Allow predefined section
0d8405e8 1548 types to set the nobits type. Avoid a shadowed declaration.
30510276 1549
75c90d61
JL
1550Wed Feb 28 15:38:56 1996 Jeffrey A Law (law@cygnus.com)
1551
24b216e1
JL
1552 * config/tc-hppa.c (hppa_fix_adjustable): For SOM, don't
1553 reduce relocs using e_nlrsel field selectors.
1554
75c90d61
JL
1555 * write.c (fix_new_exp): Don't use #elif. Some compilers
1556 don't handle it.
83b59013
JL
1557
1558 * config/tc-hppa.c (selector_table): Add "n", "nl", and "nlr" to
1559 the selector table.
1560 (pa_chk_field_selector): Handle new field selectors for SOM.
1561
535cfd0f
ILT
1562Tue Feb 27 14:42:27 1996 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
1563
1564 * configure.in (m68k-*-linux*aout*, m68k-*-linux*): New targets.
1565 * configure: Rebuild.
1566 * config/te-linux.h (LOCAL_LABELS_FB): Define.
1567 * config/tc-m68k.h (TARGET_FORMAT) [TE_LINUX]: Define to
1568 "a.out-m68k-linux".
1569 * config/tc-m68k.c (comment_chars): Don't include '#' if TE_LINUX
1570 is defined.
1571
d214421e
SS
1572Mon Feb 26 18:58:58 1996 Stan Shebs <shebs@andros.cygnus.com>
1573
1574 * mpw-make.sed: Update to handle shared library support.
1575
110b814d
DE
1576Mon Feb 26 10:34:10 1996 Doug Evans <dje@charmed.cygnus.com>
1577
1578 * config/tc-sparc.c (sparc_ip): Print all architectures that support
1579 the insn on mismatch.
1580
805e36ab
RS
1581Fri Feb 23 21:44:39 1996 Rob Savoye <rob@chinadoll.cygnus.com>
1582
1583 * configure.in: Add support for a29-coff.
1584 * configure: Rebuild.
1585
e41ab2a6
ILT
1586Thu Feb 22 16:39:43 1996 Ian Lance Taylor <ian@cygnus.com>
1587
101a2346
ILT
1588 * config/tc-sh.c (sh_coff_frob_file): Don't consider the address
1589 of the section when looking for the R_SH_USES fixup, because the
1590 frag addresses have not yet been adjusted.
1591
940c413f
ILT
1592 * gdbinit.in: Set a breakpoint on as_warn_where.
1593
e41ab2a6
ILT
1594 * config/tc-mips.c (macro): Add missing arguments to macro_build
1595 omitted in last change. From Jim Wilson <wilson@cygnus.com>.
1596
c6016ce2
ILT
1597Wed Feb 21 17:00:32 1996 Ian Lance Taylor <ian@cygnus.com>
1598
1599 * config/tc-h8300.c (tc_reloc_mangle): Change reloc based on size
1600 if it is TC_CONS_RELOC. Set a size of 4 to R_RELLONG.
1601
b32fbe07
DE
1602Wed Feb 21 09:25:39 1996 Doug Evans <dje@charmed.cygnus.com>
1603
1604 * config/tc-sparc.c (sparc_ip): Recognize %asr0 for v8.
1605
2e5e6879
DE
1606Tue Feb 20 21:48:03 1996 Doug Evans <dje@charmed.cygnus.com>
1607
1608 * config/tc-sparc.c (parse_keyword_arg): Accept leading '%'.
1609 (sparc_ip): Accept %asr[1..31] for v8 and %asr[%16..31] for v9.
1610 Recognize [uU] format args as sparclet cpregs.
1611
8a2e1fdd
ILT
1612Tue Feb 20 22:25:55 1996 Ian Lance Taylor <ian@cygnus.com>
1613
1614 * config/tc-sh.c (sh_handle_align): Don't emit R_SH_ALIGN relocs
1615 in bss_section.
1616
21965655
ILT
1617Mon Feb 19 14:16:24 1996 Ian Lance Taylor <ian@cygnus.com>
1618
1619 * config/tc-sparc.h (TC_RELOC_RTSYM_LOC_FIXUP): Check S_IS_WEAK as
1620 well as S_IS_EXTERNAL.
1621 (tc_fix_adjustable): Likewise.
1622 * config/tc-sparc.c (md_apply_fix): In OBJ_ELF case, check for
1623 S_IS_WEAK as well as S_IS_EXTERNAL when deciding whether to return
1624 early.
1625 (tc_gen_reloc): Check S_IS_WEAK as wel as S_IS_EXTERNAL when
1626 deciding whether to convert BFD_RELOC_32_PCREL_S2 if PIC.
1627
d8b42b96
DE
1628Mon Feb 19 02:15:57 1996 Doug Evans <dje@charmed.cygnus.com>
1629
1630 * config/tc-sparc.c (max_architecture): Change to sparclite for
1631 32 bit arch.
1632 (default_compatible): Delete.
1633 (sparc_ffs): New function.
1634 (md_begin): Only call SPARC_OPCODE_CONFLICT_P once.
1635 (sparc_ip): Rewrite architecture match and bump logic.
1636
7925f4d4
ILT
1637Sun Feb 18 15:03:50 1996 Ian Lance Taylor <ian@cygnus.com>
1638
1639 * configure.in: Check for 'do not mix' from native linker before
1640 trying to use -rpath.
1641 * configure: Rebuild.
1642
ef2074c2
ILT
1643Fri Feb 16 16:53:31 1996 Ian Lance Taylor <ian@cygnus.com>
1644
1645 * config/obj-coff.h (SF_ADJ_LNNOPTR): Define (non BFD_ASSEMBLER).
1646 (SF_GET_ADJ_LNNOPTR): Define (non BFD_ASSEMBLER).
1647 (SF_SET_ADJ_LNNOPTR): Define (non BFD_ASSEMBLER).
1648 * config/obj-coff.c (obj_coff_endef): Set ADJ_LNNOPTR when LNNOPTR
1649 is set.
1650 (w_symbols): If ADJ_LNNOPTR is set, add the section lnnoptr field
1651 to the symbol lnnoptr field, to get the correct file offset.
1652
28910c57
MM
1653Thu Feb 15 14:48:38 1996 Michael Meissner <meissner@tiktok.cygnus.com>
1654
1655 * config/obj-elf.c (elf_frob_symbol): On the PowerPC, force all
1656 symbols that are not function, file, or section symbols to be
1657 object types.
1658
7c2fadd1
ILT
1659Thu Feb 15 11:20:18 1996 Ian Lance Taylor <ian@cygnus.com>
1660
1a2f3c3f
ILT
1661 * configure: Set and substitute RPATH_ENVVAR.
1662 * configure: Rebuild.
1663 * Makefile.in (RPATH_ENVVAR): New variable.
1664 (check): Use $(RPATH_ENVVAR) rather than LD_LIBRARY_PATH.
1665
7c2fadd1
ILT
1666 * configure.in: Accept i686. From H.J. Lu <hjl@zoom.com>: i386
1667 doesn't need opcodes. If configuring shared, opcodes needs bfd.
1668 * configure: Rebuild.
1669
8a6f53e9
ILT
1670Wed Feb 14 16:33:12 1996 Martin Anantharaman <martin@mail.imech.uni-duisburg.de>
1671
1672 * read.c (s_mri_sect): Don't return '\0' in type. Set all
1673 appropriate flags in BFD section.
1674
1675 * configure.in (m68k-*-psos*): New target.
1676 * configure: Rebuild.
1677 * config/te-psos.h: New file.
1678 * config/tc-m68k.c (comment_chars): Don't include '#' if TE_PSOS
1679 is defined.
1680
fb251650
ILT
1681Wed Feb 14 13:43:24 1996 Ian Lance Taylor <ian@cygnus.com>
1682
ae09d880
ILT
1683 From Alan Modra <alan@spri.levels.unisa.edu.au>:
1684 * configure.in: Remove duplicate setting of cpu_type. Check
1685 whether opcodes library is required for on all targets, not just
1686 primary one.
1687 * configure: Rebuild.
1688
fb251650
ILT
1689 * config/tc-mips.c (mips_big_got): New static variable.
1690 (s_extern): Don't declare.
1691 (reg_needs_delay): New static function.
1692 (macro_build): Permit GOT/CALL_HI/LO relocs.
1693 (macro_build_lui): If place is not NULL, use the number in the
1694 expression.
1695 (load_address): Handle mips_big_got case.
1696 (macro): Handle mips_big_got for M_LA_AB, M_JAL_A, and load and
1697 store macros.
1698 (OPTION_XGOT): Define.
1699 (md_longopts): Add "xgot" if OBJ_ELF.
1700 (md_parse_option): Handle -xgot.
1701 (md_show_usage): Mention -xgot.
1702 (md_apply_fix): Permit GOT/CALL_HI/LO relocs.
1703 (tc_gen_reloc): Handle GOT/CALL_HI/LO relocs.
1704
d9396c16
ILT
1705Wed Feb 14 11:22:27 1996 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
1706
1707 * config/tc-m68k.c (m68k_ip) [operand kind '#']: When fixing
1708 the byte relocation, point it to the low byte of the word.
1709
56f9773f
ILT
1710Tue Feb 13 15:31:18 1996 Ian Lance Taylor <ian@cygnus.com>
1711
1712 * configure.in: Set HDLFLAGS for *-*-hpux with --enable-shared.
1713 * configure: Rebuild.
1714
63e4edb5
DE
1715Mon Feb 12 15:53:46 1996 Doug Evans <dje@charmed.cygnus.com>
1716
1717 * configure.in: Recognize any sparc* cpu.
1718 * configure: Regenerated.
1719
15ed5f2c
ILT
1720Mon Feb 12 15:41:21 1996 Ian Lance Taylor <ian@cygnus.com>
1721
20710f1c
ILT
1722 * read.c (potable): Add "mri" and ".mri".
1723 (s_mri): New function.
1724 * read.h (s_mri): Declare.
1725 * app.c (scrub_m68k_mri): New static variable.
1726 (mri_pseudo): New static variable.
1727 (do_scrub_begin): Add m68k_mri parameter. Use it rather than
1728 flag_m68k_mri. Initialize scrub_m68k_mri.
1729 (mri_state, mri_last_ch): New static variables.
1730 (struct app_save): Add scrub_m68k_mri, mri_state, and mri_last_ch
1731 fields.
1732 (app_push): Save new fields.
1733 (app_pop): Restore new fields.
1734 (do_scrub_chars): Check scrub_m68k_mri rather than flag_mri_mri.
1735 If TC_M68K, use a trivial state machine to look for occurrences of
1736 the .mri pseudo-op, and change the mode appropriately.
1737 * as.h (do_scrub_begin): Update prototype.
1738 * input-scrub.c (input_scrub_begin): Pass flag_m68k_mri to
1739 do_scrub_begin.
1740 * config/tc-m68k.c (reg_prefix_optional_seen): New static
1741 variable.
1742 (m68k_mri_mode_change): New function.
1743 (md_parse_option): Set reg_prefix_optional_seen.
1744 * config/tc-m68k.h (m68k_mri_mode_change): Declare.
1745 (MRI_MODE_CHANGE): Define.
1746 * doc/as.texinfo: Document .mri pseudo-op.
1747
15ed5f2c
ILT
1748 * app.c (do_scrub_chars): In MRI mode, don't treat '#' as a
1749 comment character.
1750
a043f579
ILT
1751Mon Feb 12 15:16:29 1996 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
1752
1753 Support for OBJ_ELF on m68k, mostly inside #ifdef OBJ_ELF:
1754 * config/m68k-parse.h (enum pic_relocation): Define.
1755 (struct m68k_exp): Add pic_reloc field.
1756 * config/tc-m68k.h (TC_RELOC_RTSYM_LOC_FIXUP): Define.
1757 (tc_fix_adjustable): Define to call tc_m68k_fix_adjustable.
1758 (NO_RELOC): Define to BFD_RELOC_NONE if BFD_ASSEMBLER, to zero
1759 otherwise.
1760 * config/tc-m68k.c: Delete definition of NO_RELOC.
1761 (struct m68k_it): Add pic_reloc field.
1762 (add_fix): Copy over pic_reloc field.
1763 (md_pseudo_table): Interpret .align parameter as byte count.
1764 (mote_pseudo_table): Likewise.
1765 (tc_m68k_fix_adjustable): New function.
1766 (get_reloc_code): New function.
1767 (md_assemble): Use it as last argument to fix_new_exp.
1768 (md_apply_fix_2): For a relocation against a symbol don't put the
1769 addend into the data.
1770 (tc_gen_reloc): Different addend computation for OBJ_ELF.
1771 (m68k_ip): Don't relax an operand that requires pic relocation.
1772 (md_begin): Align .text, .data and .bss on 4 byte boundary by
1773 default.
1774 * write.c (fixup_segment): Don't add symbol value to addend if
1775 TC_M68K and OBJ_ELF.
1776 * config/m68k-parse.y (yylex): Handle @PLTPC, etc.
1777 (motorola_operand): Add rule for `(zapc, EXPR)'.
1778
6ca1156d
ILT
1779Mon Feb 12 10:07:33 1996 David Mosberger-Tang <davidm@azstarnet.com>
1780
1781 * ecoff.c (ecoff_directive_weakext): Fixed so that whitespace
1782 *really* is permissible before the comma.
1783
fcee3e24
ILT
1784Mon Feb 12 00:12:13 1996 Ian Lance Taylor <ian@cygnus.com>
1785
1786 * config/tc-sh.c (sh_do_align): Align to a 2 byte boundary before
1787 inserting nop instructions.
1788
3e1c964d
ILT
1789Fri Feb 9 10:54:19 1996 Ian Lance Taylor <ian@cygnus.com>
1790
1791 * config/te-aux.h: Change include of aux.h to aux-coff.h.
1792
4080c270
ILT
1793Thu Feb 8 20:02:58 1996 Ian Lance Taylor <ian@cygnus.com>
1794
d782e3cc
ILT
1795 * config/tc-i960.c (tc_coff_symbol_emit_hook): Correct storage
1796 class setting for a CALLNAME symbol in COFF.
1797
4080c270
ILT
1798 * read.c (potable): Pass negative numbers for new .balign[wl] and
1799 .p2align[wl] pseudo-ops.
1800 (s_align_bytes): Treat a negative argument as specifying the fill
1801 length.
1802 (s_align_ptwo): Likewise.
1803
1c9dbb83
ILT
1804Wed Feb 7 14:12:03 1996 Ian Lance Taylor <ian@cygnus.com>
1805
71dd3c40
ILT
1806 * read.c (potable): Add balignw, balignl, p2alignw, and p2alignl.
1807 (do_align): Take new len parameter. Change all callers. Pass it
1808 to md_do_align.
1809 (s_align_bytes): Arg now indicates the length of the fill pattern.
1810 (s_align_ptwo): Likewise.
1811 * config/obj-coff.c (write_object_file): Pass length to
1812 md_do_align.
1813 * config/tc-i386.h (md_do_align): Take new len parameter.
1814 * config/tc-m88k.h (md_do_align): Likewise.
1815 * config/tc-m88k.c (m88k_do_align): Likewise.
1816 * config/tc-sh.h (md_do_align): Likewise.
1817 * config/tc-sh.c (sh_do_align): Likewise.
1818 * doc/as.texinfo: Document new pseudo-ops.
1819
1820 * config/obj-coff.c (fixup_mdeps): Divide offset by fr_var, as is
1821 done in cvt_frag_to_fill.
1822
9addcbb1
ILT
1823 * config/tc-sh.h (sh_do_align): Declare.
1824 (md_do_align): Define.
1825 * config/tc-sh.c (sh_do_align): New function.
1826
c15ea23a
ILT
1827 * ecoff.c (ecoff_build_lineno): Don't try to store the address
1828 difference if the next address is before the current one.
1829
9e64486e
ILT
1830 * config/tc-m68k.c (struct m68k_cpu): Add alias field.
1831 (archs): Initialize new field.
1832 (m68k_ip): Don't list alias names when listing CPUs which support
1833 an instruction.
1834
1835 * as.c (main): Call parse_args before read_begin.
1836 * app.c (do_scrub_chars): If flag_m68k_mri, don't put a dot in
1837 front of generated pseudo-ops.
1838 * read.c (potable): Ignore "name".
1839 (s_app_file): Permit a single quote after the string, since one
1840 may appear in m68k MRI mode.
1841
1c9dbb83
ILT
1842 * configure.in: Check for --enable-shared. If linking against
1843 shared BFD and opcodes, fix library name on SunOS, and try to set
1844 -rpath reasonably.
1845 * configure: Rebuild.
1846
1847Tue Feb 6 15:16:17 1996 Ian Lance Taylor <ian@cygnus.com>
1848
1849 * as.h (flag_m68k_mri): Declare.
1850 * as.c (parse_args): If TC_M68K, set flag_m68k_mri for -M.
1851 * Many files: For MRI syntax that is specific to the m68k MRI
1852 assembler, check flag_m68k_mri rather than flag_mri or
1853 MRI_MODE_NEEDS_PSEUDO_DOT.
1854
dd1d79e8
ILT
1855Mon Feb 5 16:29:11 1996 Ian Lance Taylor <ian@cygnus.com>
1856
f9e90c2e
ILT
1857 * config/tc-i960.c (ARCH_HX): Define.
1858 (arch_tab): Add HX.
1859 (targ_has_sfr): Handle ARCH_HX.
1860 (targ_has_iclass): Handle ARCH_HX.
1861 (tc_coff_fix2rtype): Add return 0 to avoid warning.
1862 (tc_headers_hook): If the architecture was specified explicitly,
1863 use it when setting the flags. Set the extern variable coff_flags
1864 rather than headers->filehdr.f_flags, since the latter is set
1865 unconditionally in obj-coff.c.
1866 (i960_handle_align): Remove unused variable fixp.
1867
dd1d79e8
ILT
1868 Support for building bfd and opcodes as shared libraries, based on
1869 patches from Alan Modra <alan@spri.levels.unisa.edu.au>:
1870 * configure.in: Set OPCODES and BFD to search directories.
1871 Substitute OPCODES_DEP and BFDDEP. On SunOS, set HLDFLAGS.
1872 * configure: Rebuild.
1873 * Makefile.in (LDFLAGS, HLDFLAGS): New variables.
1874 (LIBDEPS): New variable.
1875 (as.new0: Depend upon $(LIBDEPS) rather than $(LIBS). Use
1876 $(HLDFLAGS) in link.
1877 (check): Set LD_LIBRARY_PATH in the environment.
1878
1879Fri Feb 2 17:41:53 1996 Michael Meissner <meissner@wogglebug.tiac.net>
1880
1881 * config/tc-ppc.h (ELF_TC_SPECIAL_SECTIONS): Make .sdata2, .sbss2,
1882 .PPC.EMB.sdata0, and .PPC.EMB.sbss0 sections all default to
1883 read-only, not read/write.
1884
e277d131
ILT
1885Fri Feb 2 14:09:25 1996 Alan Modra <alan@spri.levels.unisa.edu.au>
1886
1887 * Makefile.in (INSTALL_XFORM): Remove -e.
1888
e24cf2b5
ILT
1889Fri Feb 2 12:32:15 1996 Ian Lance Taylor <ian@cygnus.com>
1890
1891 * write.c (write_relocs): Use S_IS_DEFINED and S_IS_COMMON rather
1892 than comparing S_GET_SEGMENT to undefined_section.
1893 (write_object_file): Skip symbols which were equated to an
1894 undefined or common symbol.
1895 * symbols.c (resolve_symbol_value): Use S_IS_DEFINED and
1896 S_IS_COMMON rather than comparing S_GET_SEGMENT to
1897 undefined_section.
1898 (S_GET_VALUE): Likewise. Avoid recursion problems if S_IS_DEFINED
1899 or S_IS_COMMON call S_GET_VALUE.
1900 * config/obj-aout.h (S_IS_COMMON): Define if not BFD_ASSEMBLER.
1901 * config/obj-aout.c (obj_emit_relocations): If a reloc is equated
1902 to an undefined or common symbol, convert the reloc to be against
1903 the target symbol.
1904 (obj_crawl_symbol_chain): Skip symbols which were equated to an
1905 undefined or common symbol.
1906 * config/obj-bout.h (S_IS_COMMON): Define if not BFD_ASSEMBLER.
1907 * config/obj-bout.c (obj_emit_relocations): If a reloc is equated
1908 to an undefined or common symbol, convert the reloc to be against
1909 the target symbol.
1910 (obj_crawl_symbol_chain): Skip symbols which were equated to an
1911 undefined or common symbol.
1912 * config/obj-coff.c (do_relocs_for): Use S_IS_DEFINED and
1913 S_IS_COMMON rather than comparing S_GET_SEGMENT to
1914 undefined_section.
1915 (yank_symbols): Skip symbols which were equated to an undefined or
1916 common symbol.
1917
4d9e33e4
ILT
1918Thu Feb 1 15:34:32 1996 Ian Lance Taylor <ian@cygnus.com>
1919
9e396994
ILT
1920 * config/obj-aout.h (S_IS_LOCAL): Check for \002 as well as \001.
1921 * config/obj-bout.h (S_IS_LOCAL): Likewise.
1922
4d9e33e4
ILT
1923 * configure.in: Make sure we only add m68k-parse.o to
1924 ${extra_objects} once, no matter how many m68k targets have been
1925 enabled.
1926 * configure: Rebuild.
1927
0ff513d9
SC
1928Wed Jan 31 18:31:46 1996 Steve Chamberlain <sac@slash.cygnus.com>
1929
1930 * configure.in (i386-*-cygwin32, ppc-*-cygwin32): New.
1931 * configure: Rebuild.
1932
66b935da
ILT
1933Wed Jan 31 14:03:17 1996 Richard Henderson <rth@tamu.edu>
1934
c174fb5c
ILT
1935 * config/tc-m68k.c (md_pseudo_table): Add "extend" and "ldouble".
1936 * doc/c-m68k.texi: Document .extend and .ldouble.
1937
66b935da
ILT
1938 * configure.in (m68*-apple-aux*): New target.
1939 * config/te-aux.h: New file.
1940 * config/obj-coff.c (compare_external_relocs): New static function
1941 if TE_AUX.
1942 (do_relocs_for): Sort relocs if TE_AUX.
1943 (fixup_segment): If TE_AUX, store common symbol value in segment.
1944 * config/tc-m68k.h (TARGET_FORMAT): Define if TE_AUX.
1945
30c2a08e
ILT
1946Wed Jan 31 12:24:58 1996 Ian Lance Taylor <ian@cygnus.com>
1947
9e396994 1948 * config/obj-coff.h (S_IS_LOCAL): Check for \002 as well as \001.
615c0a79 1949
30c2a08e
ILT
1950 * config/tc-mips.c (s_mips_globl): Set BSF_OBJECT if it is not
1951 BSF_FUNCTION.
1952 (s_cpload): Set BSF_OBJECT for _gp_disp symbol.
1953 * read.c (s_lcomm): If S_SET_SIZE is defined, set the size of the
1954 symbol.
1955 * ecoff.c (add_procedure): Set the BSF_FUNCTION flag.
1956 (ecoff_build_symbols): If S_SET_SIZE is defined, set the size of
1957 an undefined symbol and the size of a function symbol.
1958 * config/obj-elf.c (elf_frob_symbol): If TC_MIPS, set BSF_OBJECT
1959 for all common symbols.
1960
0e6f2f82
KR
1961Tue Jan 30 12:35:24 1996 Ken Raeburn <raeburn@cygnus.com>
1962
1963 * config/tc-i960.c (parse_memop): In MRI mode, don't use implicit
1964 scaling of index.
1965
1966 * expr.c (operand): Accept 0x hex constants in MRI mode if not on
1967 m68k.
1968
8e3ff081
ILT
1969Mon Jan 29 12:21:30 1996 Ian Lance Taylor <ian@cygnus.com>
1970
3e78d072
ILT
1971 * config/obj-elf.c (obj_elf_type): Set BSF_OBJECT flag for a type
1972 of object. From Ronald F. Guilmette <rfg@monkeys.com>.
1973
8e3ff081
ILT
1974 * ecoff.c (localsym_t): Add addend field.
1975 (add_ecoff_symbol): Add addend argument. Change all callers.
1976 (coff_sym_value): Make static.
1977 (coff_sym_addend): New static variable.
1978 (ecoff_directive_def): Initialize coff_sym_addend.
1979 (ecoff_directive_val): Accept symbol + constant.
1980 (ecoff_directive_endef): Pass coff_sym_addend to add_ecoff_symbol.
1981 (ecoff_build_symbols): Include the addend in the symbol value.
1982
79edc846
KK
1983Fri Jan 26 19:28:52 1996 Kim Knuttila <krk@cygnus.com>
1984
1985 * config/tc-ppc.c (md_assemble): Ignore overflow on
1986 BFD_RELOC_16_GOTOFF and BFD_RELOC_PPC_TOC16.
1987
1988Fri Jan 26 16:14:17 1996 Michael Meissner <meissner@tiktok.cygnus.com>
1989
1990 * config/tc-ppc.c (md_apply_fix3): SDA21 relocations are now 4
1991 bytes in size, so offset appropriately in big endian mode when
1992 writing the bottom 2 bytes.
1993
6cbc4e35
DE
1994Thu Jan 25 20:26:23 1996 Doug Evans <dje@charmed.cygnus.com>
1995
1996 * config/tc-sparc.c (default_compatible): New static local.
1997 (md_begin): Initialize it. Rewrite warn_on_bump handling.
1998 (sparc_ip): If no architecture or -bump specified, don't mark as
1999 mismatched those in default_compatible.
2000
4fe0fddd
ILT
2001Thu Jan 25 12:21:53 1996 Ian Lance Taylor <ian@cygnus.com>
2002
2003 SCO ELF support from Robert Lipe <robertl@arnet.com>:
2004 * configure.in (i386-*-sco*elf*): Use fmt elf, targ sco5.
2005 * configure: Rebuild.
2006 * config/sco5.mt: New file; set TDEFINES to -DSCO_ELF.
2007 * config/tc-i386.c (sco_id): New function, if SCO_ELF.
2008 * config/tc-i386.h (tc_init_after_args): Define if SCO_ELF.
2009 (sco_id): Declare if SCO_ELF.
2010
e70ad5d5
DE
2011Thu Jan 25 03:10:53 1996 Doug Evans <dje@charmed.cygnus.com>
2012
2013 * config/tc-sparc.c (initial_architecture,can_bump_v9_p): Deleted.
2014 ({max,warn_after}_architecture): New static locals.
2015 (md_begin): Replace NUMOPCODES with sparc_num_opcodes.
2016 If both architecture and -bump requested, set max_architecture to max.
2017 (sparc_md_end): Simplify.
2018 (sparc_ip): Replace references to can_bump_v9_p with max_architecture.
2019 Rewrite code to bump architecture and check for conflicts.
2020 (md_longopts): Recognize -xarch={v8plus,v8plusa} for compatibility
2021 with Solaris assembler.
2022 (md_parse_option): Likewise. Call sparc_opcode_lookup_arch.
2023 (md_show_usage): Update.
2024
a8248831
DE
2025Wed Jan 24 22:11:03 1996 Doug Evans <dje@charmed.cygnus.com>
2026
2027 * Makefile.in (RUNTEST): Fix reference to $${srcdir}.
2028
6df07e7f
DE
2029Mon Jan 22 09:21:36 1996 Doug Evans <dje@charmed.cygnus.com>
2030
2031 * config/tc-sparc.h (TARGET_FORMAT): Use #ifdef SPARC_ARCH64 instead of
2032 #ifdef sparcv9 when choosing value.
2033 (ENV64): Delete.
2034 (md_end): Define.
2035 (sparc_md_end): Declare.
2036 * config/tc-sparc.c (SPARC_V9): Renamed from sparcv9.
2037 (initial_architecture): New static local.
2038 (can_bump_v9_p): Likewise.
2039 (NO_V9): Delete all occurrences.
2040 (sparc_md_end): New function.
2041 (sparc_ip): New local v9_arg_p. Rework fp reg number test.
2042 Don't bump architecture to v9 unless can_bump_v9_p set.
2043 (md_parse_option): -A<arch> passed, set can_bump_v9_p accordingly.
2044 * configure.in (sparc64 target cpu): Don't set obj_format here.
2045 (SPARC_V9): Renamed from sparcv9.
2046 (sparc64-*-elf*): Define SPARC_ARCH64.
2047 * configure: Regenerated.
2048 * acconfig.h (SPARC_V9): Renamed from sparcv9.
2049 (SPARC_ARCH64): Add.
7fcb3191 2050 * conf.in: Regenerated.
6df07e7f
DE
2051 * config/vmsconf.h: Update.
2052
c9c7c1d7
JSC
2053Mon Jan 22 17:24:47 1996 James G. Smith <jsmith@cygnus.co.uk>
2054
2055 * config/tc-mips.c (load_register): Optimise "dli" loads.
2056 (md_show_usage): add "-mcpu=vr4100" to help text.
16ce20d4 2057
07ce72c9
ILT
2058Mon Jan 22 11:53:00 1996 Ian Lance Taylor <ian@cygnus.com>
2059
16ce20d4
ILT
2060 * symbols.c (resolve_symbol_value): If a symbol is equated to an
2061 undefined symbol, preserve the X_op of O_symbol.
2062 (S_GET_VALUE): Fix check to permit this case.
2063 * write.c (write_relocs): If a reloc is against an undefined
2064 symbol equated to another symbol, change the reloc to be against
2065 the latter symbol.
2066 * config/obj-coff.c (do_relocs_for): Likewise.
2067
07ce72c9
ILT
2068 * config/tc-ppc.c (ppc_csect): An unnamed csect is storage class
2069 XMC_PR.
2070
d971d39e
MM
2071Mon Jan 22 10:59:48 1996 Michael Meissner <meissner@tiktok.cygnus.com>
2072
2073 * config/obj-elf.c (elf/ppc.h): Include elf/ppc.h if target
2074 computer is PowerPC.
2075
2076 * config/tc-ppc.c (md_apply_fix3): Add more embedded relocations.
2077
2078 * config/tc-ppc.h (ELF_TC_SPECIAL_SECTIONS): Add sections
2079 mentioned in the eabi.
2080
0291f0f5
KK
2081Thu Jan 18 17:58:19 1996 Kim Knuttila <krk@cygnus.com>
2082
2083 * config/tc-ppc.c (ppc_reldata): Changed alignement on reldata_section
2084 * config/tc-ppc.c (ppc_pdata): Changed the alignment on pdata_section
2085
c682be53
MM
2086Mon Jan 15 17:43:42 1996 Michael Meissner <meissner@tiktok.cygnus.com>
2087
2088 * config/tc-ppc.c (mapping): Add more relocation suffixes.
2089
ee4fdbb9
MM
2090Sun Jan 14 21:29:36 1996 Michael Meissner <meissner@tiktok.cygnus.com>
2091
2092 * config/tc-ppc.c (ppc_elf_validate_fix): Allow .gcc_except_table
2093 as a section it is ok to have unadorned -mrelocatable pointers in.
2094
2095Sat Jan 13 11:09:08 1996 Michael Meissner <meissner@tiktok.cygnus.com>
747b98fe
MM
2096
2097 * config/tc-ppc.c (ppc_section*): Wrap these functions inside
2098 #ifdef OBJ_ELF.
2099
f99d287b
MM
2100Fri Jan 12 15:32:07 1996 Michael Meissner <meissner@tiktok.cygnus.com>
2101
2102 * config/obj-elf.c (obj_elf_section): Add hooks so machine
2103 dependent section attributes can be handled.
2104
2105 * config/tc-ppc.h: (md_elf_section_{letter,type,word,flags}): New
2106 macros to add support for exclude section flag and ordered section
2107 type.
2108
2109 * config/tc-ppc.c (ppc_elf_section_{letter,type,word,flags}): New
2110 functions to add support for exclude section flag and ordered
2111 section type.
2112
347a705b
ILT
2113Fri Jan 12 12:04:00 1996 Ian Lance Taylor <ian@cygnus.com>
2114
2a4e49a9
ILT
2115 * subsegs.c (section_symbol): Don't try to look up the section
2116 symbol in the hash table. It should be possible to have a symbol
2117 with the same name as a section, but no connection to it.
2118
d9f4dec1
ILT
2119 * read.c (cons_worker): Only call mri_comment_end from flag_mri.
2120 From James Carlson <carlson@xylogics.com>.
2121
347a705b
ILT
2122 * expr.c (operand): Skip whitespace after a close parenthesis.
2123 From James Carlson <carlson@xylogics.com>.
2124
10c8c95e
JW
2125Tue Jan 2 12:43:23 1996 Jim Wilson <wilson@chestnut.cygnus.com>
2126
2127 * config/tc-sh.c (md_apply_fix): Call as_bad_where instead of
2128 as_warn_where for relocation overflow.
347a705b
ILT
2129 (parse_reg): Accept register name only if next character is
2130 not alphanumeric.
10c8c95e 2131
cb844314
JL
2132Sat Dec 30 23:42:51 1995 Jeffrey A Law (law@cygnus.com)
2133
2134 * ecoff.c (ecoff_stab): Simplify. Correctly handle sym + offset
2135 addresses for static variables.
2136
36cb0e7c
MM
2137Thu Dec 21 12:54:32 1995 Michael Meissner <meissner@tiktok.cygnus.com>
2138
2139 * config/tc-ppc.c (mapping): Make @got give a real GOT relocation,
2140 and xgot give the old toc16 relocation.
2141 (md_apply_fix3): Support all GOT relocations.
2142
5e69b693
ILT
2143Wed Dec 20 14:57:17 1995 Ian Lance Taylor <ian@cygnus.com>
2144
2145 * config/tc-mips.c (load_address): Correctly handle a constant in
2146 SVR4_PIC case. From Richard Kenner <kenner@vlsi1.ultra.nyu.edu>.
2147
29861dd0
C
2148Fri Dec 15 14:25:07 1995 J.T. Conklin <jtc@rtl.cygnus.com>
2149
2150 * config/tc-sh.c (parse_reg): Recognize SH3 registers.
2151 (get_specific): Handle A_SSR, A_SPC and A_REG_B.
2152 (build_Mbytes): Handle REG_B.
2153
432b8fa8
ILT
2154Fri Dec 15 16:07:25 1995 Ian Lance Taylor <ian@cygnus.com>
2155
2156 * ecoff.c (ecoff_build_aux): Use new bfd_big_endian macro.
2157
ee68a042
RJ
2158Fri Dec 15 12:11:48 1995 Raymond Jou <rjou@mexican.cygnus.com>
2159
2160 * mpw-make.sed: If linking, edit ALL_CFLAGS to CFLAGS.
2161
b14630f2
ILT
2162Thu Dec 14 15:09:52 1995 Ian Lance Taylor <ian@cygnus.com>
2163
2164 * config/obj-coff.c (write_object_file): Set the s_align field to
2165 the number of bytes, rather than to the power of 2.
2166
4a3d48fc
ILT
2167Tue Dec 12 12:19:37 1995 Ian Lance Taylor <ian@cygnus.com>
2168
2169 * Makefile.in (DISTCLEAN_HERE): New variable.
2170 (distclean): Use it.
2171 (maintainer-clean): Depend upon clean-here rather than clean,
2172 distclean, and clean-info. Run make maintainer-clean in doc.
2173 Remove files listed in DISTCLEAN_HERE.
2174 * doc/Makefile.in (maintainer-clean realclean): Split out from
2175 distclean. Depend upon clean-info and distclean.
2176
7e5e83cf
SS
2177Mon Dec 11 16:23:51 1995 Stan Shebs <shebs@andros.cygnus.com>
2178
2179 * mac-as.r: Fix copyright and version strings.
2180 (cfrg): Use PROG_NAME instead of literal name.
2181
1b10f50d
ILT
2182Mon Dec 11 14:14:08 1995 Ian Lance Taylor <ian@cygnus.com>
2183
2184 * read.c (read_a_source_file): If tc_unrecognized_line is defined,
2185 call it.
2186 * config/tc-a29k.h (tc_unrecognized_line): Define.
2187 * config/tc-a29k.c (a29k_unrecognized_line): New function.
2188 (md_operand): Handle a29k style local dollar labels.
2189
2f3bbb1b
ILT
2190Wed Dec 6 17:52:52 1995 Ian Lance Taylor <ian@cygnus.com>
2191
2192 * config/obj-multi.h: If OBJ_MAYBE_ELF, define OBJ_SYMFIELD_TYPE.
2193
624c91d1
KR
2194Tue Dec 5 13:26:34 1995 Ken Raeburn <raeburn@cygnus.com>
2195
2196 * read.c (s_fill): If md_flush_pending_output is defined, call
2197 it.
2198
9e4b3a23
KR
2199Mon Dec 4 15:10:53 1995 Ken Raeburn <raeburn@cygnus.com>
2200
2201 * config/obj-coff.c (size_section, fill_section, fixup_mdeps):
2202 Treat rs_align_code like rs_align.
2203
3554987a
DE
2204Sun Dec 3 16:46:54 1995 Richard Earnshaw (rearnsha@armltd.co.uk)
2205
2206 * config/tc-arm.c (cp_address_required_here): Set pre_inc when
2207 converting an absolute address into a PC-relative one.
2208
90f543f6
SS
2209Fri Dec 1 11:57:56 1995 Stan Shebs <shebs@andros.cygnus.com>
2210
2211 * mpw-config.in: Don't always use te-generic.h for emulation.
2212 (powerpc-apple-macos): Use emulation te-macos.h.
2213start-sanitize-gm
2214 (mips-gm-magic): New configuration.
2215end-sanitize-gm
2216 * mpw-make.sed (install, install-only): Edit in Mac-specific
2217 install procedure.
2218
d4c8a45e
ILT
2219Fri Dec 1 10:59:25 1995 Ian Lance Taylor <ian@cygnus.com>
2220
2eec8710
ILT
2221 * configure.in: Improve message about unsupported ELF targets.
2222 * configure: Rebuild.
2223
d4c8a45e
ILT
2224 * config/tc-m88k.c (m88k_do_align): Correct check for whether fill
2225 pattern is zero. From Manfred Hollstein.
2226
531a1af2
KK
2227Thu Nov 30 13:25:49 1995 Kim Knuttila <krk@cygnus.com>
2228
2229 * config/tc-ppc.c (ppc_pe_section): To get the alignment right for
2230 the various idata sections, we check the name on the .section pseudo.
2231
464070de
ILT
2232Thu Nov 30 11:23:42 1995 Manfred Hollstein KS/EF4A 60/1F/110 #40283 <manfred@lts.sel.alcatel.de>
2233
2234 * config/obj-coff.c (fixup_segment): If TC_M88K is defined, do not
2235 add section's paddr to add_number; compatibility to native as and
2236 ld forbids.
2237
6a087325
KR
2238Wed Nov 29 23:14:27 1995 Ken Raeburn <raeburn@cygnus.com>
2239
9d5aef80
KR
2240 * configure.in: Treat m68k-sysv4 like m68k-elf, not m68k-sysv3.
2241
ac9ef8ee
KR
2242 * hash.c (struct hash_entry): Moved here...
2243 * hash.h (struct hash_entry): ...from here.
2244
6a087325
KR
2245 * config/obj-elf.c (elf_frob_symbol): Don't free and clear sy_obj
2246 if it's already known to be null.
2247
77fa4d98
MM
2248Wed Nov 29 13:00:20 1995 Michael Meissner <meissner@tiktok.cygnus.com>
2249
2250 * config/tc-ppc.c (md_apply_fix3): Don't adjust the value for 32
2251 bit relocs converted to PC relative relocs. This turned out to
2252 add the offset from the beginning of .text twice.
2253
c6e4e834
KR
2254Tue Nov 28 10:42:36 1995 Ken Raeburn <raeburn@cygnus.com>
2255
2256 * stabs.c (s_stab_generic): In 's' case, free string from
2257 obstack.
2258
2259 * config/obj-elf.h (ELF_TARGET_SYMBOL_FIELDS): Remove unused field
2260 sy_name_offset.
2261 * config/obj-multi.h (ELF_TARGET_SYMBOL_FIELDS) [OBJ_MAYBE_ELF]:
2262 Ditto.
2263
2264 * subsegs.h (segment_info_type): Make bitfields unsigned.
2265
2266 * expr.h (struct expressionS): Make X_op and X_unsigned bitfields,
2267 and move them together. On most systems this will reduce the
2268 structure size by one word.
2269 (operatorT): Define O_max.
2270 * expr.c (expr_begin): Verify that X_op is wide enough to hold
2271 O_max.
2272
2273 * read.c (pop_insert): Print error returned by hash table
2274 insertion code.
2275
2276 * as.c (dump_statistics): Split out from main; dump some hash
2277 table stats and target-specific stats.
2278 (start_time): No longer automatic to main.
2279 (main): Set file-level start_time and call dump_statistics at
2280 exit. Exit by calling xexit.
2281 (show_usage): Make --statistics description less specific.
2282 * subsegs.c (subsegs_print_statistics): New function.
2283 * write.c (write_print_statistics): New function.
2284 (n_fixups): New static variable.
2285 (fix_new_internal): Increment it.
2286 * read.c (read_print_statistics): New function.
2287 * read.h (read_print_statistics): Declare.
2288 * symbol.c (symbol_print_statistics): New function.
2289 * symbol.h (symbol_print_statistics): Declare.
2290 * hash.c (hash_print_statistics): New function.
2291 * hash.h (hash_print_statistics): Declare.
2292 * config/tc-i386.c (i386_print_statistics): New function.
2293 * config/tc-i386.h (i386_print_statistics): Declare.
2294 (tc_print_statistics): New macro.
2295 * messages.c (as_fatal, as_assert, as_abort): Use xexit, not
2296 exit.
2297
2298 * hash.c (DELETED): Rewrite to use a valid but unique address.
2299 (START_POWER): Reduce to 10.
2300 (enum stat_enum): New enumerator, replacing STAT_* index macros.
2301 Add new values for counting strcmp calls.
2302 (GROW_FACTOR): New macro.
2303 (hash_grow): Use GROW_FACTOR. Rewrite for quick returns instead
2304 of nesting blocks.
2305 (FULL_VALUE): New macro. Use 1/4 of table size instead of 1/2.
2306 (hash_new): Use FULL_VALUE.
2307 (struct hash_control): Definition moved here.
2308 (hash_code): Don't mask to low bits.
2309 (hash_ask): Mask returned hash code here. Check hash value before
2310 calling strcmp; count strcmp calls.
2311 * hash.h (struct hash_control): Declare, don't define, here.
2312 (HASH_STATLENGTH): Deleted.
2313 (struct hash_entry): Add field for hash code.
2314 (hash_say, hash_apply): Don't declare.
2315
2316 * hash.c (destroy): Return void.
2317 (applicatee): Ditto.
2318 (main): Fix declarations.
2319 (hash_apply): Return void. Argument `function' returns void. Put
2320 inside "#ifdef TEST".
2321 (hash_say): Define only if TEST is defined.
2322 * hash.h (hash_apply, hash_say): Declarations deleted.
2323
6a4667f4
ILT
2324Mon Nov 27 13:18:25 1995 Ian Lance Taylor <ian@cygnus.com>
2325
2326 * configure: Rebuild with autoconf 2.7.
2327
330add8a
ILT
2328Tue Nov 21 18:39:01 1995 Ian Lance Taylor <ian@cygnus.com>
2329
2330 * aclocal.m4 (AC_PROG_CC): Remove local definition.
2331 * configure: Rebuild with autoconf 2.6.
2332
520dd8d5
ILT
2333Mon Nov 20 17:26:00 1995 Ian Lance Taylor <ian@cygnus.com>
2334
2335 * config/tc-ppc.c (ppc_debug_name_section_size): Remove.
2336 (ppc_stabx): Don't increment ppc_debug_name_section_size.
2337 (ppc_bc): Likewise.
2338 (ppc_frob_file): Remove.
2339 * config/tc-ppc.h (tc_frob_file): Don't define.
2340 (ppc_frob_file): Don't declare.
2341
880b7429
KR
2342Mon Nov 20 13:37:05 1995 Ken Raeburn <raeburn@cygnus.com>
2343
d6c4a3fa
KR
2344 * Makefile.in (TARG_CPU_DEP_alpha): Mention alpha-opcode.h.
2345 * config/alpha-opcode.h: Include one-operand variants of jmp and
2346 jsr.
2347
880b7429
KR
2348 * config/te-delt88.h: Renamed from te-delta88.h, to avoid conflict
2349 with te-delta.h in 8.3 file systems.
2350 * configure.in: Adjusted.
2351
aa8a6656
ILT
2352Thu Nov 16 12:49:38 1995 Ian Lance Taylor <ian@cygnus.com>
2353
880b7429
KR
2354 * config/tc-mips.c (s_err): Remove; just use the one in read.c.
2355
aa8a6656
ILT
2356 * config/m68k-parse.y (yylex): In MRI mode, '@' can start an octal
2357 number.
2358 * expr.c (operand): Handle MRI suffixes after unadorned 0.
2359
7b889f5e
KR
2360Thu Nov 16 00:21:44 1995 Ken Raeburn <raeburn@cygnus.com>
2361
da9b55af
KR
2362 Version 2.6 released.
2363 * Makefile.in (VERSION): Updated to 2.6.
2364
7b889f5e
KR
2365 * config/obj-coff.c (write_object_file): Change use of md_do_align
2366 to pass a pointer rather than a fill value, to match other uses.
2367
46618ae6
KR
2368Wed Nov 15 03:52:00 1995 Ken Raeburn <raeburn@cygnus.com>
2369
7b889f5e
KR
2370 * config/tc-ns32k.h (TC_FIX_TYPE): Add missing semicolon.
2371
46618ae6
KR
2372 * as.c (main): Move md_end call to just after call to
2373 perform_an_assembly_pass. Delete cpu-specific code here.
2374 * config/tc-i960.h (md_end): New macro, calls brtab_emit.
46618ae6
KR
2375 * config/tc-arm.c (md_end): Unused function deleted.
2376 * config/tc-ns32k.c (md_end): Ditto.
2377
2378 * config/tc-i386.c (i386_align_code): New function, moved here
2379 from HANDLE_ALIGN macro.
2380 * config/tc-i386.h (HANDLE_ALIGN): Call it.
2381
2382 Mon Jul 31 14:53:19 1995 Alan Modra <alan@spri.levels.unisa.edu.au>
2383
2384 * config/tc-i386.h (md_do_align): cast fill and 0x90 to char
2385 before comparing
2386
2387 Mon May 1 10:91:49 1995 Alan Modra <alan@spri.levels.unisa.edu.au>
2388
2389 * config/tc-i386.h (md_do_align): Make ".align n,0x90" generate
2390 multi-byte nops to avoid changing gcc. The necessary gcc change
2391 might break old assemblers.
2392
2393 Sat Apr 22 20:53:05 1995 Alan Modra <alan@spri.levels.unisa.edu.au>
2394
2395 * config/tc-i386.h (md_do_align, HANDLE_ALIGN): Add macros to
2396 generate optimal multi-byte nop instructions for ".align n"
2397 ".align n,0x90", and aligns requiring more than 15 bytes of
2398 padding still generate multiple 0x90's as before.
2399
2400Mon Nov 13 17:40:21 1995 Ian Lance Taylor <ian@cygnus.com>
2401
2402 * config/tc-m68k.c (s_mri_until): Call pop_mri_control.
2403
51bc513e
SS
2404Mon Nov 13 20:39:06 1995 Stan Shebs <shebs@andros.cygnus.com>
2405
2406 * configure.in (ppc-*-macos*, ppc-*-mpw*): New configurations.
2407 * configure: Update.
2408 * mpw-make.sed: Reorder commands to make sed happier.
2409 * config/te-macos.h: New file.
2410 * config/tc-ppc.h (TARGET_FORMAT): Set correctly for PowerMac.
2411
8b39c5df
JL
2412Sun Nov 12 21:14:56 1995 Jeffrey A Law (law@cygnus.com)
2413
2414 * config/tc-hppa.c (pa_ip): Fix off-by-2 bug in length check for
2415 conditional branches.
2416 (md_apply_fix): Likewise.
2417
2418Thu Nov 9 16:14:01 1995 Ian Lance Taylor <ian@cygnus.com>
2419
2420 * config/tc-a29k.c (md_apply_fix): Warn if an attempt is made to
2421 generate a reloc which the linker will not handle correctly. Fix
2422 overflow checking--R_IREL is 18 bits, not 17.
2423
6a649eda
ILT
2424Wed Nov 8 19:59:36 1995 Ian Lance Taylor <ian@cygnus.com>
2425
a071b8e9
ILT
2426 * config/obj-coff.c (fixup_segment): Don't subtract md_pcrel_from
2427 from a PC relative reloc if TC_A29K.
2428
2429 * config/tc-a29k.c (line_separator_chars): Restore '@'. Existing
2430 code depends upon it.
2431
6a649eda
ILT
2432 * config/tc-a29k.c (md_operand): Handle $float, $double, and
2433 $extend. Based on code from Eric Freudenthal
2434 <freudenthal@nyu.edu>.
2435 * config/tc-a29k.h (LEX_DOLLAR): Define.
2436 * read.c (LEX_DOLLAR): Define if not defined.
2437 (lex_type): Use LEX_DOLLAR.
2438
6364a188
ILT
2439Wed Nov 8 16:38:14 1995 Eric Freudenthal <freudenthal@nyu.edu>
2440
2441 * configure.in (a29k-nyu-sym1): New target, just like other a29k
2442 targets.
2443
0fa6f8f6
ILT
2444Wed Nov 8 11:38:48 1995 Ian Lance Taylor <ian@cygnus.com>
2445
2446 * config/obj-coff.c (c_dot_file_symbol): Cast xmalloc return.
2447
2448Tue Nov 7 09:14:35 1995 Kim Knuttila <krk@cygnus.com>
2449
2450 * config/tc-ppc.c (md_apply_fix3): Added BFD_RELOC_RVA. Currently
2451 used only by "dlltool.c".
2452
eec2cfef
ILT
2453Mon Nov 6 18:51:26 1995 Ian Lance Taylor <ian@cygnus.com>
2454
2455 * config/tc-alpha.c: Undefine inline if not __GNUC__.
2456 (md_pseudo_table): Don't define "extern".
2457
df7504dc
ILT
2458Sat Nov 4 00:51:21 1995 Ian Lance Taylor <ian@cygnus.com>
2459
a3d1c561
ILT
2460 * config/tc-ppc.c (ppc_biei): Force symbol into text_section.
2461
df7504dc
ILT
2462 * config/tc-ppc.c (md_show_usage): Put backslash at end of line.
2463
07d012f6
ILT
2464Fri Nov 3 13:02:59 1995 Ian Lance Taylor <ian@cygnus.com>
2465
36e80ac6
ILT
2466 * macro.c (macro_expand_body): Don't warn about == with a
2467 nonexistent parameter, in case it is in a comment field.
2468
07d012f6
ILT
2469 * as.c (main): On TC_A29K, call macro_init with macro_alternate
2470 set to 1.
2471 * macro.c (get_any_string): Don't keep quotes if macro_strip_at is
2472 set, even if macro_alternate is set.
2473 (get_apost_token): If macro_strip_at, only skip kind if it is '@'.
2474 (sub_actual): If macro_strip_at, and kind is '@', don't look up
2475 the token unless it ended in '@'.
2476 * config/tc-a29k.c (line_separator_chars): Remove '@'.
2477 * doc/c-a29k.texi: Document macro usage on A29K.
2478
01f108bc
ILT
2479Thu Nov 2 23:07:57 1995 Ian Lance Taylor <ian@cygnus.com>
2480
2481 * config/tc-m68k.c (m68k_ip): Handle new 'W' place, meaning a
2482 signed word.
2483 (install_operand): Likewise.
2484
2485 * config/obj-elf.c (ecoff_debug_pseudo_table): Add "extern".
2486
2487Wed Nov 1 15:17:02 1995 Manfred Hollstein KS/EF4A 60/1F/110 #40283 <manfred@lts.sel.alcatel.de>
2488
2489 * configure.in (m88k-motorola-sysv*): New target.
2490 * configure: Rebuild.
2491 * config/te-delta88.h: New file.
2492 * config/obj-coff.c (write_object_file): Use md_do_align if it is
2493 defined.
2494 * config/tc-m88k.h (SUB_SEGMENT_ALIGN): Define.
2495 (md_do_align): Define.
2496 * config/tc-m88k.c: Include "subsegs.h".
2497 (m88k_do_align): New function.
2498
2499 * config/te-delta.h (STRIP_UNDERSCORE): Don't define.
2500 (COFF_NOLOAD_PROBLEM): Define.
2501 (LOCAL_LABELS_DOLLAR, LOCAL_LABELS_FB): Define.
2502
7954cc14
KR
2503Wed Nov 1 16:07:43 1995 Ken Raeburn <raeburn@cygnus.com>
2504
2505 * config/tc-i386.c (md_assemble): For a jump instruction with
2506 non-constant target, require 7 available bytes in the current
2507 frag, not 6.
2508
d033806f
FF
2509Tue Oct 31 15:37:16 1995 Fred Fish <fnf@rtl.cygnus.com>
2510
2511 * config/obj-elf.h: Include bfd/elf-bfd.h rather than
2512 bfd/libelf.h.
2513
d7b2038f
ILT
2514Tue Oct 31 16:34:28 1995 David Mosberger-Tang <davidm@azstarnet.com>
2515
2516 * configure.in (alpha-*-linux*): Use ecoff.
2517 * configure: Rebuild.
2518 * ecoff.c (ecoff_directive_extern): New function.
2519 (ecoff_directive_weakext): New function.
2520 (ecoff_build_symbols): Handle weak symbols.
2521 (ecoff_setup_ext): Likewise.
59c80ca2 2522 (ecoff_frob_symbol): Warn about weak common symbols.
d7b2038f
ILT
2523 * ecoff.h (ecoff_directive_extern): Declare.
2524 (ecoff_directive_weakext): Declare.
2525 * symbols.c (S_IS_WEAK): New function.
2526 * symbols.h (S_IS_WEAK): Declare.
2527 * config/obj-ecoff.c (obj_pseudo_table): Add "extern" and
2528 "weakext".
2529 * config/tc-mips.c (mips_pseudo_table): Remove "extern".
2530 (s_extern): Remove.
2531
cbdf59ad
ILT
2532Tue Oct 31 13:29:08 1995 Ian Lance Taylor <ian@cygnus.com>
2533
b629f627
ILT
2534 * config/tc-ppc.c (ppc_lglobl): Do the right thing.
2535
7ab1edc8
ILT
2536 * config/tc-ppc.c (ppc_bb): Call SF_SET_PROCESS.
2537 (ppc_eb): Likewise. Set the storage class to C_BLOCK, not C_FCN.
2538 (ppc_frob_symbol): Don't change C_BLOCK symbols to C_HIDEXT.
2539 * config/obj-coff.c (coff_frob_symbol): Don't call
2540 SA_SET_SYM_ENDNDX with the current symbol; call it with the next
2541 one. If OBJ_XCOFF, try to figure out whether the symbol is going
2542 to be dropped.
2543
31751d9d
ILT
2544 * config/tc-ppc.c (md_pseudo_table): Add "bc" and "ec".
2545 (ppc_stab_symbol): New static variable.
2546 (ppc_change_csect): Check that ppc_toc_csect is not NULL.
2547 (ppc_stabx): Set ppc_stab_symbol around call to symbol_make. Set
2548 sy_tc.real_name to the stab string.
2549 (ppc_bc, ppc_ec): New static functions.
2550 (ppc_canonicalize_symbol_name): If ppc_stab_symbol is set, don't
2551 do anything.
2552 (ppc_symbol_new_hook): If ppc_stab_symbol is set, don't look for a
2553 suffix.
0e3dd9a0
ILT
2554 (ppc_frob_symbol): Set BSF_NOT_AT_END for symbols with csect aux
2555 entries.
31751d9d 2556
cbdf59ad
ILT
2557 * input-scrub.c (input_scrub_push): Reset sb_index.
2558
91123dbe
ILT
2559Mon Oct 30 17:52:46 1995 Ian Lance Taylor <ian@cygnus.com>
2560
2561 * listing.c (listing_newline): Don't create a frag in the absolute
2562 section.
2563
73255941
ILT
2564Sat Oct 28 01:02:05 1995 Ian Lance Taylor <ian@cygnus.com>
2565
df72d2a5
ILT
2566 * config/tc-ppc.c (md_pseudo_table): Add "data" and "text".
2567 (ppc_csect): Move most of the code to ppc_change_csect, and call
2568 it.
2569 (ppc_change_csect): New static function, taken from ppc_csect.
2570 (ppc_section): New static function.
2571 (ppc_saw_abs): New static varable.
2572 (ppc_frob_symbol): Create aux entry for absolute symbols. Warn if
2573 a symbol has no csect.
2574 (ppc_adjust_symtab): New function.
2575 * config/tc-ppc.h (tc_adjust_symtab): Define if OBJ_XCOFF.
2576 (ppc_adjust_symtab): Declare if OBJ_XCOFF.
2577
2578 * write.c (write_object_file): If tc_adjust_symtab is defined,
2579 call it just before the call to obj_adjust_symtab.
2580
73255941
ILT
2581 * symbols.c (symbol_find_or_make): Change name to be const.
2582 * symbols.h (symbol_find_or_make): Update declaration.
2583
9bfaf1b9
KR
2584Thu Oct 26 19:18:27 1995 Ken Raeburn <raeburn@cygnus.com>
2585
2586 * doc/as.texinfo (Align): Mention SH.
2587 * doc/c-m68k.texi (M68K-Directives, .even): Describe behavior, not
2588 .align value.
2589 * doc/c-z8k.texi (Z8000 Directives, global): Fix minor typo.
2590 (Z8000 Directives, even): Don't give numeric align value, instead
2591 explain behavior.
2592
ae143278
DE
2593Thu Oct 26 11:45:03 1995 Richard Earnshaw (rearnsha@armltd.co.uk)
2594
2595 * tc-arm.c (do_ldst): Assemble ldr/str r0, [r1] as a pre-increment
2596 instruction.
2597
270433cc
PB
2598Wed Oct 25 11:59:24 1995 Per Bothner <bothner@kalessin.cygnus.com>
2599
2600 * Makefile.in (diststuff): Also make info.
2601 (maintainer-clean realclean): Also make clean-info.
2602
18a11401
JL
2603Tue Oct 24 15:21:33 1995 Jeffrey A Law (law@cygnus.com)
2604
2605 * config/tc-hppa.c (md_pseudo_table): Add new ".nsubspa" opcode.
2606 (pa_subspace): For ".nsubspa", always create a new subspace
2607 with the given attributes, even if one already exists with the
2608 same name.
2609
96fe71e1
MM
2610Tue Oct 24 14:50:38 1995 Michael Meissner <meissner@tiktok.cygnus.com>
2611
2612 * config/tc-ppc.h (TC_FORCE_RELOCATION_SECTION): Rename from
2613 TC_FORCE_RELOCATION, taking an additional section argument. If
2614 the section of the target symbol is not the same as the current
2615 section, always force the relocation to be used.
2616 (MD_PCREL_FROM_SECTION): New macro to call md_pcrel_from_section.
2617
2618 * config/tc-ppc.c (md_pcrel_from_section): Rename from the
2619 md_pcrel_from function, taking an additional section argument.
2620 Invoke TC_FORCE_RELOCATION_SECTION instead of TC_FORCE_RELOCATION.
2621
2622 * write.c (TC_FORCE_RELOCATION_SECTION): Define in terms of the
2623 older TC_FORCE_RELOCATION if not defined.
2624 (MD_PCREL_FROM_SECTION): If not defined, invoke md_pcrel_from.
2625 (fixup_segment): Use MD_PCREL_FROM_SECTION instead of
2626 md_pcrel_from, and TC_FORCE_RELOCATION_SECTION instead of
2627 TC_FORCE_RELOCATION.
2628
1d75481b
KR
2629Mon Oct 23 16:20:04 1995 Ken Raeburn <raeburn@cygnus.com>
2630
2631 * input-scrub.c (as_where): Set name to null pointer if we don't
2632 have a file name.
2633 * messages.c (identify): Only print filename if non-null.
2634 (as_show_where): Ditto, for line number too.
2635 (as_warn_internal, as_bad_internal): Ditto.
2636
2637 * input-file.c (input_file_open): If the input file can't be
2638 opened, consider it an error.
2639
c625fc23
JSC
2640Mon Oct 23 11:15:44 1995 James G. Smith <jsmith@pasanda.cygnus.co.uk>
2641
2642 * config/tc-mips.c: Added mips_4100 control, and support for
2643 accepting the 4100 as a MIPS architecture variant (md_begin,
2644 macro_build, mips_ip, md_parse_option). Adding suitable
2645 command-line OPTIONs, and updating the help text (md_show_usage).
2646
dd1a5316
KR
2647Wed Oct 18 13:20:32 1995 Ken Raeburn <raeburn@cygnus.com>
2648
c625fc23
JSC
2649 * subsegs.c (subseg_begin): Only set absolute_frchain.fix_* when
2650 BFD_ASSEMBLER is defined.
2651
3366a224
KR
2652 * Use one active frag and one obstack per frag chain:
2653 * frags.c (frags): Variable deleted.
2654 (frag_alloc): New function.
2655 (frag_grow, frag_more, frag_variant, frag_now_fix,
2656 frag_append_1_char): Refer to frchain_now->frch_obstack instead of
2657 frags variable.
2658 (frag_new): Ditto. Verify that frch_last and frag_now match on
2659 entry and exit, and that old frag_now has non-zero type. Replace
2660 "know" uses with "assert". Use frag_alloc instead of mucking with
2661 obstack alignment.
2662 * frags.h (frags): Declaration deleted.
2663 * subsegs.h (struct frchain): Add new field frch_frag_now.
2664 * subsegs.c (frchains, dummy_frag, absolute_frchain): New static
2665 variables.
2666 (subsegs_begin): Initialize frchains obstack. Under gcc, don't
2667 give it any stricter alignment than frchainS structures need. Do
2668 not initialize frags obstack. Set frag_now to point to
2669 dummy_obstack. Initialize absolute_frchain.
2670 (subseg_set_rest): Save and restore frag_now in frch_frag_now
2671 field of frchainS. Don't create new frags on section switch, and
2672 use frag_alloc when creating a new frag chain. For absolute
2673 section, set frchain_now to absolute_frchain. Verify that
2674 frch_last and frag_now match on entry and exit. Initialize
2675 per-chain obstack, and under gcc, set required alignment to that
2676 needed by fragS structure.
c625fc23 2677
3366a224
KR
2678 * write.c (chain_frchains_together_1): Verify fr_type is nonzero.
2679
2680 * stabs.c (get_stab_string_offset): Only copy input string if a
2681 fresh copy is needed, not if the section already exists.
2682 (s_stab_generic): Cache stab section name to bypass lookups, since
2683 usually it will match. Could be made faster still by changing the
2684 memory allocation rules.
2685 (s_xstab): Cache section name to bypass repeated string
2686 allocation.
2687
2688 * frags.c (frag_new): Deleted register declarations.
2689
2690 * listing.c (frag_now): Don't declare.
2691
2692 * as.c (chunksize): New variable.
2693 (debug_memory): New variable.
2694 (main): If debug_memory is set, reduce chunksize and
2695 _bfd_chunksize.
2696 * as.h (chunksize): Declare it.
2697 * read.c (read_begin): Use it.
2698
de5ebe2e
KR
2699 * config/tc-alpha.c (md_shortopts): Include 'g'.
2700 (md_parse_option): Ignore it.
2701
dd1a5316
KR
2702 * Makefile.in (distclean): Remove Makefile and config.status from
2703 testsuite directory.
2704 (clean-here): Don't delete testsuite. Instead, delete only the
2705 files within it that would be generated by running tests.
2706
de5ebe2e
KR
2707 * config/tc-hppa.c (hppa_elf_mark_end_of_function): Call
2708 frag_now_fix instead of accessing obstack info directly.
2709 * config/tc-arm.c (s_ltorg): Ditto.
2710 (md_assemble): Ditto.
2711
2712 * config/tc-i386.c (md_assemble): Call frag_grow instead of
2713 obstack_room.
2714
625f4e48
KR
2715Wed Oct 18 12:22:59 1995 Ken Raeburn <raeburn@cygnus.com>
2716
2717 * stabs.c (aout_process_stab): Insert debug symbol into symbol
2718 chain after parsing value expression, if any, to avoid separating
2719 continued .stabs lines.
2720
33a8c1b6
ILT
2721Mon Oct 16 10:56:41 1995 Ian Lance Taylor <ian@cygnus.com>
2722
2723 * config/tc-mips.c (mips_elf_pseudo_table): Remove.
2724 (mips_pop_insert): Don't call pop_insert on mips_elf_pseudo_table.
2725
b6b8f911
MM
2726Mon Oct 16 07:07:37 1995 Michael Meissner <meissner@wogglebug.tiac.net>
2727
625f4e48
KR
2728 * config/tc-ppc.c (md_begin): Use new flags PPC_OPCODE_COMMON for
2729 -mcom support and PPC_OPCODE_ANY for -many.
2730 (md_parse_option): Ditto.
2731 (ppc_arch): Ditto.
2732 (md_begin): For duplicate instructions, print all duplicates
2733 before aborting.
b6b8f911 2734
4c2935f4
MM
2735Sun Oct 15 22:06:14 1995 Michael Meissner <meissner@cygnus.com>
2736
2737 * config/tc-ppc.c (md_parse_option): Support for -mcom to turn on
2738 common mode operation.
2739 (md_show_usage): Add -mcom to usage message.
4c2935f4
MM
2740
2741Fri Oct 13 13:32:45 1995 steve chamberlain <sac@slash.cygnus.com>
2742
2743 * expr.c (op_rank): Add O_symbol_rva.
2744 * expr.h (operatorT): Add O_symbol_rva.
2745 * read.c (cons_worker): Set O_symbol_rva when necessary.
2746 * write.c (fix_new_exp): Understand O_symbol_rva.
2747
7db865dc
ILT
2748Tue Oct 10 11:34:14 1995 Ian Lance Taylor <ian@cygnus.com>
2749
2750 * config/tc-mips.c: Correct s_cons arguments. From Michael
2751 Joosten <joost@ori.cadlab.de>.
2752
1b13e6fc
ILT
2753Mon Oct 9 19:59:53 1995 Ian Lance Taylor <ian@cygnus.com>
2754
2755 * config/tc-ppc.c (ppc_macro): Make count unsigned.
2756 (ppc_biei): Set segment to now_seg and value to coff_n_line_nos.
2757 (ppc_frob_symbol): Handle C_BINCL and C_EINCL symbols by setting
2758 the fix_line field.
2759 * config/obj-coff.c (coff_n_line_nos): Rename from n_line_nos, and
2760 make non-static. Change all users.
2761 * config/obj-coff.h (coff_n_line_nos): Declare.
2762
9e3e3d4c
KR
2763Fri Oct 6 16:24:27 1995 Ken Raeburn <raeburn@cygnus.com>
2764
2765 Mon Sep 25 22:49:32 1995 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
2766
2767 * configure.in (AC_ARG_WITH(bfd-assembler)): Fix help message.
2768
2769 * config/obj-elf.c (obj_elf_common): Convert specified byte
2770 alignment to power of two. Set size of local bss symbol.
2771
2772 * config/tc-m68k.c (tc_gen_reloc): Fix typo in variable name.
2773
13a6c753
ILT
2774Fri Oct 6 15:22:25 1995 Ian Lance Taylor <ian@cygnus.com>
2775
2776 * sb.c, macro.c: Decide whether to include <string.h> or
2777 <strings.h> just as as.h does.
2778
a75aafcd
DE
2779Fri Oct 6 09:55:33 1995 Doug Evans <dje@canuck.cygnus.com>
2780
2781 * Makefile.in (site.exp): Fix setting of $srcdir.
2782
2783 * config/tc-arm.c (md_atof): Fix little-endian output.
f6ec8c46
DE
2784 * config/tc-arm.h (ARM_BI_ENDIAN): Move definition so defined for
2785 all coff targets.
a75aafcd 2786
d89861c7
KR
2787Thu Oct 5 20:17:30 1995 Ken Raeburn <raeburn@cygnus.com>
2788
4d2ba393
KR
2789 * doc/as.texinfo: Split out the NS32k family documentation,
2790 despite its being commented out for now.
2791 * doc/c-ns32k.texi: New file.
2792
2c5eb48d
KR
2793 * sb.c, macro.c: Include string.h.
2794
6b0a6eaa
KR
2795 * Makefile.in (comparison): Only check *.o; we don't care if
2796 timestamps inserted by the native linker differ.
2797
d89861c7
KR
2798 * config/tc-alpha.c (alpha_align): Only fill with a no-op pattern
2799 if alignment stricter than 4 bytes is requested; in that case,
2800 align to a 4-byte boundary first.
2801
70aeac05
KR
2802 Thu Sep 28 19:35:27 1995 Pat Rankin <rankin@eql.caltech.edu>
2803
2804 * config/obj-vms.c (VMS_RSYM_Parse): eliminate "might be used
2805 uninitialized" warning for `Max_Source_Offset'.
2806
eaaa2a42
KK
2807Wed Oct 4 16:17:02 1995 Kim Knuttila <krk@cygnus.com>
2808
2809 * config/tc-ppc.c (parse_toc_entry): New function to parse [toc]
2810 qualifiers and detect errors if present.
2811 (md_assemble): Add call to parse_toc_entry. Also added some support
2812 for the [tocv] qualifier.
2813 (ppc_pe_tocd): New function to support data in the toc section.
2814
cd557d83
ILT
2815Wed Oct 4 14:03:39 1995 Ian Lance Taylor <ian@cygnus.com>
2816
2817 * config/tc-ppc.c (ppc_frob_symbol): Don't create an aux entry for
2818 an absolute symbol.
2819
42ac8fa8
ILT
2820Tue Oct 3 12:18:19 1995 Ian Lance Taylor <ian@cygnus.com>
2821
01f108bc 2822 * config/tc-m68k.c (isword): Accept all values from -65536 to
cd557d83
ILT
2823 +65535, so ~VAL will not be rejected.
2824
42ac8fa8
ILT
2825 * cond.c (s_endif): Call demand_empty_rest_of_line. In MRI mode,
2826 skip characters after the pseudo-op.
2827 (s_else): Likewise.
2828 * read.c (get_line_sb): Don't look past buffer_limit.
2829 (s_include): In MRI mode, skip characters after the file name.
2830
eef66934
ILT
2831Mon Oct 2 16:15:27 1995 Ian Lance Taylor <ian@cygnus.com>
2832
2833 * config/m68k-parse.y (m68k_reg_parse): In MRI mode, permit
2834 periods in register names.
2835
cdc49cba 2836For older changes see ChangeLog.1.
This page took 0.202038 seconds and 4 git commands to generate.