doc fixes from Roland
[deliverable/binutils-gdb.git] / gas / ChangeLog
1 Thu Oct 26 19:18:27 1995 Ken Raeburn <raeburn@cygnus.com>
2
3 * doc/as.texinfo (Align): Mention SH.
4 * doc/c-m68k.texi (M68K-Directives, .even): Describe behavior, not
5 .align value.
6 * doc/c-z8k.texi (Z8000 Directives, global): Fix minor typo.
7 (Z8000 Directives, even): Don't give numeric align value, instead
8 explain behavior.
9
10 Thu Oct 26 11:45:03 1995 Richard Earnshaw (rearnsha@armltd.co.uk)
11
12 * tc-arm.c (do_ldst): Assemble ldr/str r0, [r1] as a pre-increment
13 instruction.
14
15 Wed Oct 25 11:59:24 1995 Per Bothner <bothner@kalessin.cygnus.com>
16
17 * Makefile.in (diststuff): Also make info.
18 (maintainer-clean realclean): Also make clean-info.
19
20 Tue Oct 24 15:21:33 1995 Jeffrey A Law (law@cygnus.com)
21
22 * config/tc-hppa.c (md_pseudo_table): Add new ".nsubspa" opcode.
23 (pa_subspace): For ".nsubspa", always create a new subspace
24 with the given attributes, even if one already exists with the
25 same name.
26
27 Tue Oct 24 14:50:38 1995 Michael Meissner <meissner@tiktok.cygnus.com>
28
29 * config/tc-ppc.h (TC_FORCE_RELOCATION_SECTION): Rename from
30 TC_FORCE_RELOCATION, taking an additional section argument. If
31 the section of the target symbol is not the same as the current
32 section, always force the relocation to be used.
33 (MD_PCREL_FROM_SECTION): New macro to call md_pcrel_from_section.
34
35 * config/tc-ppc.c (md_pcrel_from_section): Rename from the
36 md_pcrel_from function, taking an additional section argument.
37 Invoke TC_FORCE_RELOCATION_SECTION instead of TC_FORCE_RELOCATION.
38
39 * write.c (TC_FORCE_RELOCATION_SECTION): Define in terms of the
40 older TC_FORCE_RELOCATION if not defined.
41 (MD_PCREL_FROM_SECTION): If not defined, invoke md_pcrel_from.
42 (fixup_segment): Use MD_PCREL_FROM_SECTION instead of
43 md_pcrel_from, and TC_FORCE_RELOCATION_SECTION instead of
44 TC_FORCE_RELOCATION.
45
46 Mon Oct 23 16:20:04 1995 Ken Raeburn <raeburn@cygnus.com>
47
48 * input-scrub.c (as_where): Set name to null pointer if we don't
49 have a file name.
50 * messages.c (identify): Only print filename if non-null.
51 (as_show_where): Ditto, for line number too.
52 (as_warn_internal, as_bad_internal): Ditto.
53
54 * input-file.c (input_file_open): If the input file can't be
55 opened, consider it an error.
56
57 Mon Oct 23 11:15:44 1995 James G. Smith <jsmith@pasanda.cygnus.co.uk>
58
59 * config/tc-mips.c: Added mips_4100 control, and support for
60 accepting the 4100 as a MIPS architecture variant (md_begin,
61 macro_build, mips_ip, md_parse_option). Adding suitable
62 command-line OPTIONs, and updating the help text (md_show_usage).
63
64 Wed Oct 18 13:20:32 1995 Ken Raeburn <raeburn@cygnus.com>
65
66 * subsegs.c (subseg_begin): Only set absolute_frchain.fix_* when
67 BFD_ASSEMBLER is defined.
68
69 * Use one active frag and one obstack per frag chain:
70 * frags.c (frags): Variable deleted.
71 (frag_alloc): New function.
72 (frag_grow, frag_more, frag_variant, frag_now_fix,
73 frag_append_1_char): Refer to frchain_now->frch_obstack instead of
74 frags variable.
75 (frag_new): Ditto. Verify that frch_last and frag_now match on
76 entry and exit, and that old frag_now has non-zero type. Replace
77 "know" uses with "assert". Use frag_alloc instead of mucking with
78 obstack alignment.
79 * frags.h (frags): Declaration deleted.
80 * subsegs.h (struct frchain): Add new field frch_frag_now.
81 * subsegs.c (frchains, dummy_frag, absolute_frchain): New static
82 variables.
83 (subsegs_begin): Initialize frchains obstack. Under gcc, don't
84 give it any stricter alignment than frchainS structures need. Do
85 not initialize frags obstack. Set frag_now to point to
86 dummy_obstack. Initialize absolute_frchain.
87 (subseg_set_rest): Save and restore frag_now in frch_frag_now
88 field of frchainS. Don't create new frags on section switch, and
89 use frag_alloc when creating a new frag chain. For absolute
90 section, set frchain_now to absolute_frchain. Verify that
91 frch_last and frag_now match on entry and exit. Initialize
92 per-chain obstack, and under gcc, set required alignment to that
93 needed by fragS structure.
94
95 * write.c (chain_frchains_together_1): Verify fr_type is nonzero.
96
97 * stabs.c (get_stab_string_offset): Only copy input string if a
98 fresh copy is needed, not if the section already exists.
99 (s_stab_generic): Cache stab section name to bypass lookups, since
100 usually it will match. Could be made faster still by changing the
101 memory allocation rules.
102 (s_xstab): Cache section name to bypass repeated string
103 allocation.
104
105 * frags.c (frag_new): Deleted register declarations.
106
107 * listing.c (frag_now): Don't declare.
108
109 * as.c (chunksize): New variable.
110 (debug_memory): New variable.
111 (main): If debug_memory is set, reduce chunksize and
112 _bfd_chunksize.
113 * as.h (chunksize): Declare it.
114 * read.c (read_begin): Use it.
115
116 * config/tc-alpha.c (md_shortopts): Include 'g'.
117 (md_parse_option): Ignore it.
118
119 * Makefile.in (distclean): Remove Makefile and config.status from
120 testsuite directory.
121 (clean-here): Don't delete testsuite. Instead, delete only the
122 files within it that would be generated by running tests.
123
124 * config/tc-hppa.c (hppa_elf_mark_end_of_function): Call
125 frag_now_fix instead of accessing obstack info directly.
126 * config/tc-arm.c (s_ltorg): Ditto.
127 (md_assemble): Ditto.
128
129 * config/tc-i386.c (md_assemble): Call frag_grow instead of
130 obstack_room.
131
132 Wed Oct 18 12:22:59 1995 Ken Raeburn <raeburn@cygnus.com>
133
134 * stabs.c (aout_process_stab): Insert debug symbol into symbol
135 chain after parsing value expression, if any, to avoid separating
136 continued .stabs lines.
137
138 Mon Oct 16 10:56:41 1995 Ian Lance Taylor <ian@cygnus.com>
139
140 * config/tc-mips.c (mips_elf_pseudo_table): Remove.
141 (mips_pop_insert): Don't call pop_insert on mips_elf_pseudo_table.
142
143 Mon Oct 16 07:07:37 1995 Michael Meissner <meissner@wogglebug.tiac.net>
144
145 * config/tc-ppc.c (md_begin): Use new flags PPC_OPCODE_COMMON for
146 -mcom support and PPC_OPCODE_ANY for -many.
147 (md_parse_option): Ditto.
148 (ppc_arch): Ditto.
149 (md_begin): For duplicate instructions, print all duplicates
150 before aborting.
151
152 Sun Oct 15 22:06:14 1995 Michael Meissner <meissner@cygnus.com>
153
154 * config/tc-ppc.c (md_parse_option): Support for -mcom to turn on
155 common mode operation.
156 (md_show_usage): Add -mcom to usage message.
157
158 Fri Oct 13 13:32:45 1995 steve chamberlain <sac@slash.cygnus.com>
159
160 * expr.c (op_rank): Add O_symbol_rva.
161 * expr.h (operatorT): Add O_symbol_rva.
162 * read.c (cons_worker): Set O_symbol_rva when necessary.
163 * write.c (fix_new_exp): Understand O_symbol_rva.
164
165 Tue Oct 10 11:34:14 1995 Ian Lance Taylor <ian@cygnus.com>
166
167 * config/tc-mips.c: Correct s_cons arguments. From Michael
168 Joosten <joost@ori.cadlab.de>.
169
170 Mon Oct 9 19:59:53 1995 Ian Lance Taylor <ian@cygnus.com>
171
172 * config/tc-ppc.c (ppc_macro): Make count unsigned.
173 (ppc_biei): Set segment to now_seg and value to coff_n_line_nos.
174 (ppc_frob_symbol): Handle C_BINCL and C_EINCL symbols by setting
175 the fix_line field.
176 * config/obj-coff.c (coff_n_line_nos): Rename from n_line_nos, and
177 make non-static. Change all users.
178 * config/obj-coff.h (coff_n_line_nos): Declare.
179
180 Fri Oct 6 16:24:27 1995 Ken Raeburn <raeburn@cygnus.com>
181
182 Mon Sep 25 22:49:32 1995 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
183
184 * configure.in (AC_ARG_WITH(bfd-assembler)): Fix help message.
185
186 * config/obj-elf.c (obj_elf_common): Convert specified byte
187 alignment to power of two. Set size of local bss symbol.
188
189 * config/tc-m68k.c (tc_gen_reloc): Fix typo in variable name.
190
191 Fri Oct 6 15:22:25 1995 Ian Lance Taylor <ian@cygnus.com>
192
193 * sb.c, macro.c: Decide whether to include <string.h> or
194 <strings.h> just as as.h does.
195
196 Fri Oct 6 09:55:33 1995 Doug Evans <dje@canuck.cygnus.com>
197
198 * Makefile.in (site.exp): Fix setting of $srcdir.
199
200 * config/tc-arm.c (md_atof): Fix little-endian output.
201 * config/tc-arm.h (ARM_BI_ENDIAN): Move definition so defined for
202 all coff targets.
203
204 Thu Oct 5 20:17:30 1995 Ken Raeburn <raeburn@cygnus.com>
205
206 * doc/as.texinfo: Split out the NS32k family documentation,
207 despite its being commented out for now.
208 * doc/c-ns32k.texi: New file.
209
210 * sb.c, macro.c: Include string.h.
211
212 * Makefile.in (comparison): Only check *.o; we don't care if
213 timestamps inserted by the native linker differ.
214
215 * config/tc-alpha.c (alpha_align): Only fill with a no-op pattern
216 if alignment stricter than 4 bytes is requested; in that case,
217 align to a 4-byte boundary first.
218
219 Thu Sep 28 19:35:27 1995 Pat Rankin <rankin@eql.caltech.edu>
220
221 * config/obj-vms.c (VMS_RSYM_Parse): eliminate "might be used
222 uninitialized" warning for `Max_Source_Offset'.
223
224 Wed Oct 4 16:17:02 1995 Kim Knuttila <krk@cygnus.com>
225
226 * config/tc-ppc.c (parse_toc_entry): New function to parse [toc]
227 qualifiers and detect errors if present.
228 (md_assemble): Add call to parse_toc_entry. Also added some support
229 for the [tocv] qualifier.
230 (ppc_pe_tocd): New function to support data in the toc section.
231
232 Wed Oct 4 14:03:39 1995 Ian Lance Taylor <ian@cygnus.com>
233
234 * config/tc-ppc.c (ppc_frob_symbol): Don't create an aux entry for
235 an absolute symbol.
236
237 Tue Oct 3 12:18:19 1995 Ian Lance Taylor <ian@cygnus.com>
238
239 * config/tc-m68k.c (isbyte): Accept all values from -65536 to
240 +65535, so ~VAL will not be rejected.
241
242 * cond.c (s_endif): Call demand_empty_rest_of_line. In MRI mode,
243 skip characters after the pseudo-op.
244 (s_else): Likewise.
245 * read.c (get_line_sb): Don't look past buffer_limit.
246 (s_include): In MRI mode, skip characters after the file name.
247
248 Mon Oct 2 16:15:27 1995 Ian Lance Taylor <ian@cygnus.com>
249
250 * config/m68k-parse.y (m68k_reg_parse): In MRI mode, permit
251 periods in register names.
252
253 For older changes see ChangeLog.1.
This page took 0.033724 seconds and 4 git commands to generate.