BFD messages
[deliverable/binutils-gdb.git] / gas / ChangeLog
1 2018-02-26 Alan Modra <amodra@gmail.com>
2
3 * testsuite/gas/mips/reginfo-2.l: Update.
4
5 2018-02-23 Alan Modra <amodra@gmail.com>
6
7 * testsuite/gas/mips/reginfo-2.l: Update.
8
9 2018-02-23 Nick Clifton <nickc@redhat.com>
10
11 * doc/as.texinfo (Pseudo Ops): Add nodes for .dc, .dcb and .ds.
12
13 2018-02-23 Kuan-Lin Chen <kuanlinchentw@gmail.com>
14
15 * config/tc-nds32.c (ict_model): New function. Hook new
16 directive .ict_model.
17 (nds32_insert_relax_entry): Tag the bits of entry relocation
18 for .ict_model.
19
20 2018-02-22 H.J. Lu <hongjiu.lu@intel.com>
21
22 * config/tc-i386.c (_i386_insn): Add rex_encoding.
23 (md_assemble): When i.rex_encoding is true, generate a REX byte
24 if possible.
25 (parse_insn): Set i.rex_encoding for {rex}.
26 * doc/c-i386.texi: Document {rex}.
27 * testsuite/gas/i386/x86-64-pseudos.s: Add {rex} tests.
28 * testsuite/gas/i386/x86-64-pseudos.d: Updated.
29
30 2018-02-22 A. Wilcox <awilfox@adelielinux.org>
31
32 PR 22014
33 * config/tc-mips.c (mips_lookup_insn): Use memmove to strip the
34 instruction size suffix.
35
36 2018-02-20 Maciej W. Rozycki <macro@mips.com>
37
38 * testsuite/gas/mips/mips16-branch-reloc-4.d: New test.
39 * testsuite/gas/mips/mips16-branch-reloc-5.d: New test.
40 * testsuite/gas/mips/mips16-branch-reloc-4.s: New test source.
41 * testsuite/gas/mips/mips16-branch-reloc-5.s: New test source.
42 * testsuite/gas/mips/mips.exp: Run the new tests.
43
44 2018-02-20 Max Filippov <jcmvbkbc@gmail.com>
45
46 * config/tc-xtensa.c (struct litpool_frag): Add new field
47 literal_count.
48 (MAX_AUTO_POOL_LITERALS, MAX_EXPLICIT_POOL_LITERALS)
49 (MAX_POOL_LITERALS): New macro definitions.
50 (auto_litpool_limit): Initialize to 0.
51 (md_parse_option): Set auto_litpool_limit in the presence of
52 --auto-litpools option.
53 (xtensa_maybe_create_literal_pool_frag): Zero-initialize
54 literal_count field.
55 (xg_find_litpool): New function. Make sure that found literal
56 pool size is within the limit.
57 (xtensa_move_literals): Extract literal pool search code into
58 the new function.
59 * testsuite/gas/xtensa/all.exp: Add auto-litpools-2 test.
60 * testsuite/gas/xtensa/auto-litpools-2.d: New file.
61 * testsuite/gas/xtensa/auto-litpools-2.s: New file.
62 * testsuite/gas/xtensa/auto-litpools.d: Fix up changed
63 addresses.
64 * testsuite/gas/xtensa/auto-litpools.s: Change literal value so
65 that objdump doesn't get out of sync.
66
67 2018-02-20 Thomas Preud'homme <thomas.preudhomme@arm.com>
68
69 * doc/c-arm.texi (.arch_extension): Mention extensions it accepts are
70 also the same as -march.
71
72 2018-02-17 H.J. Lu <hongjiu.lu@intel.com>
73
74 * NEWS: Mention .nop directive.
75 * as.h (_relax_state): Add rs_space_nop and rs_fill_nop.
76 * read.c (potable): Add .nop.
77 (s_nop): New function.
78 * read.h (s_nop): New prototype.
79 * write.c (cvt_frag_to_fill): Handle rs_space_nop and
80 rs_fill_nop.
81 (md_generate_nops): New function.
82 (relax_segment): Likewise.
83 (write_contents): Use md_generate_nops for rs_fill_nop.
84 * config/tc-i386.c (alt64_11): New.
85 (alt64_patt): Likewise.
86 (md_convert_frag): Handle rs_space_nop.
87 (i386_output_nops): New function.
88 (i386_generate_nops): Likewise.
89 (i386_align_code): Call i386_output_nops.
90 * config/tc-i386.h (i386_generate_nops): New.
91 (md_generate_nops): Likewise.
92 * doc/as.texinfo: Document .nop directive.
93 * testsuite/gas/i386/i386.exp: Run .nop directive tests.
94 * testsuite/gas/i386/nop-1.d: New file.
95 * testsuite/gas/i386/nop-1.s: Likewise.
96 * testsuite/gas/i386/nop-2.d: Likewise.
97 * testsuite/gas/i386/nop-2.s: Likewise.
98 * testsuite/gas/i386/nop-3.d: Likewise.
99 * testsuite/gas/i386/nop-3.s: Likewise.
100 * testsuite/gas/i386/nop-4.d: Likewise.
101 * testsuite/gas/i386/nop-4.s: Likewise.
102 * testsuite/gas/i386/nop-5.d: Likewise.
103 * testsuite/gas/i386/nop-5.s: Likewise.
104 * testsuite/gas/i386/nop-6.d: Likewise.
105 * testsuite/gas/i386/nop-6.s: Likewise.
106 * testsuite/gas/i386/nop-bad-1.l: Likewise.
107 * testsuite/gas/i386/nop-bad-1.s: Likewise.
108 * testsuite/gas/i386/x86-64-nop-1.d: Likewise.
109 * testsuite/gas/i386/x86-64-nop-2.d: Likewise.
110 * testsuite/gas/i386/x86-64-nop-3.d: Likewise.
111 * testsuite/gas/i386/x86-64-nop-4.d: Likewise.
112 * testsuite/gas/i386/x86-64-nop-5.d: Likewise.
113 * testsuite/gas/i386/x86-64-nop-6.d: Likewise.
114
115 2018-02-15 Tamar Christina <tamar.christina@arm.com>
116
117 * config/tc-arm.c (cpu_arch_ver): Renumber ARM_ARCH_V8_4A.
118 * testsuite/gas/arm/attr-march-armv8_4-a.d: New.
119
120 2018-02-13 Max Filippov <jcmvbkbc@gmail.com>
121
122 * config/tc-xtensa.c (xg_find_best_trampoline): Skip trampoline
123 frag that contains source address.
124
125 2018-02-13 Nick Clifton <nickc@redhat.com>
126
127 PR 22773
128 * config/tc-arm.c (md_apply_fix): Test Rn field of Thumb ORR
129 instruction before assuming that it is a MOV instruction.
130 * testsuite/gas/arm/pr22773.s: New test.
131 * testsuite/gas/arm/pr22773.d: New test driver.
132 * testsuite/gas/arm/pr22773.l: New expected output.
133
134 2018-02-13 H.J. Lu <hongjiu.lu@intel.com>
135
136 PR gas/22791
137 * config/tc-i386.c (need_plt32_p): New function.
138 (output_jump): Generate BFD_RELOC_X86_64_PLT32 if possible.
139 (md_estimate_size_before_relax): Likewise.
140 * testsuite/gas/i386/reloc64.d: Updated.
141 * testsuite/gas/i386/x86-64-jump.d: Likewise.
142 * testsuite/gas/i386/x86-64-mpx-branch-1.d: Likewise.
143 * testsuite/gas/i386/x86-64-mpx-branch-2.d: Likewise.
144 * testsuite/gas/i386/x86-64-relax-2.d: Likewise.
145 * testsuite/gas/i386/x86-64-relax-3.d: Likewise.
146 * testsuite/gas/i386/ilp32/reloc64.d: Likewise.
147 * testsuite/gas/i386/ilp32/x86-64-branch.d: Likewise.
148
149 2018-02-13 Maciej W. Rozycki <macro@mips.com>
150
151 * testsuite/gas/mips/loongson-3a-2.d: Rename test.
152
153 2018-02-13 Nick Clifton <nickc@redhat.com>
154
155 PR 22823
156 * config/obj-elf.c (elf_pseudo_table): Remove now redundant
157 casts.
158 (obj_elf_vtable_inherit): Rename to obj_elf_get_vtable_inherit.
159 (obj_elf_vtable_inherit): New stub function that calls
160 obj_elf_get_vtable_inherit.
161 (obj_elf_vtable_entry): Rename to obj_elf_get_vtable_entry.
162 (obj_elf_vtable_entry): New stub function that calls
163 obj_elf_get_vtable_entry.
164 * config/obj-elf.h (obj_elf_vtable_inherit): Update prototype.
165 (obj_elf_vtable_entry) Likewise.
166 (obj_elf_get_vtable_inherit) Likewise.
167 (obj_elf_get_vtable_entry) Likewise.
168 * config/tc-arm.c (md_pseudo_table): Remove now redundant cast.
169 * config/tc-i386c (md_pseudo_table): Likewise.
170 * config/tc-hppa.c (pa_vtable_entry): Call
171 obj_elf_get_vtable_entry.
172 (pa_vtable_inherit): Call obj_elf_get_vtable_inherit.
173 * config/tc-mips.c (s_mips_file): Replace call to dwarf2_get_file
174 with call to dwarf2_get_filename.
175 * dwarf2dbg.c (dwarf2_directive_file): Rename to
176 dwarf2_directive_filename.
177 (dwarf2_directive_file): New stub function that calls
178 dwarf2_directive_filename.
179 * dwarf2dbg.h: Prototype dwarf2_directive_filename.
180
181 2018-02-12 Maciej W. Rozycki <macro@mips.com>
182
183 * testsuite/gas/mips/reginfo-2-n32.d: Add `--no-pad-sections' to
184 `as' flags.
185
186 2018-02-12 Henry Wong <henry@stuffedcow.net>
187
188 * testsuite/gas/mips/r6.d: Update for "sigrie" encoding fix.
189 * testsuite/gas/mips/r6-n32.d: Likewise.
190 * testsuite/gas/mips/r6-n64.d: Likewise.
191
192 2018-02-12 Nick Clifton <nickc@redhat.com>
193
194 * po/ru.po: Updated Russian translation.
195
196 2018-02-08 Alan Modra <amodra@gmail.com>
197
198 PR 22819
199 * config/tc-ppc.c (md_assemble): Rewrite insn alignment checking.
200 (ppc_frag_check): Likewise.
201 * testsuite/gas/ppc/misalign.d,
202 * testsuite/gas/ppc/misalign.l,
203 * testsuite/gas/ppc/misalign.s: New test.
204 * testsuite/gas/ppc/misalign2.d,
205 * testsuite/gas/ppc/misalign2.s: New test.
206 * testsuite/gas/ppc/ppc.exp: Run them.
207
208 2018-02-05 Maciej W. Rozycki <macro@mips.com>
209
210 * config/tc-riscv.c (riscv_handle_implicit_zero_offset): Rename
211 `expr' parameter to `ep'.
212
213 2018-02-05 Maciej W. Rozycki <macro@mips.com>
214
215 * testsuite/gas/mips/reginfo-2.d: New test.
216 * testsuite/gas/mips/reginfo-2-n32.d: New test.
217 * testsuite/gas/mips/reginfo-2.l: New test stderr output.
218 * testsuite/gas/mips/reginfo-2.s: New test source.
219 * testsuite/gas/mips/mips.exp: Run the new tests.
220
221 2018-02-05 Nick Clifton <nickc@redhat.com>
222
223 * po/ru.po: Updated Russian translation.
224
225 2018-01-31 Alan Modra <amodra@gmail.com>
226
227 PR 22714
228 * app.c (last_char): New static var.
229 (struct app_save): Add last_char field.
230 (app_push, app_pop): Handle it.
231 (do_scrub_chars): Use last_char in test for "\@". Set last_char.
232
233 2018-01-29 Eric Botcazou <ebotcazou@adacore.com>
234
235 PR gas/22738
236 * config/tc-sparc.h (sparc_mach): Declare.
237 (TARGET_MACH): Define to above.
238 * config/tc-sparc.c (sparc_mach): New function.
239 (sparc_md_end): Minor tweak.
240
241 2018-01-29 Nick Clifton <nickc@redhat.com>
242
243 * po/ru.po: Updated Russian translation.
244
245 2018-01-26 Maciej W. Rozycki <macro@mips.com>
246
247 * configure.tgt: Use generic emulation for `mips-*-windiss',
248 overriding the blanket choice made for `*-*-windiss'.
249
250 2018-01-26 Maciej W. Rozycki <macro@mips.com>
251
252 * configure.tgt: Use `mips-*-sysv4*' rather than
253 `mips-*-sysv4*MP*'.
254
255 2018-01-24 Renlin Li <renlin.li@arm.com>
256
257 * config/tc-aarch64.c (reloc_table): add entries for
258 BFD_RELOC_AARCH64_MOVW_PREL_G0, BFD_RELOC_AARCH64_MOVW_PREL_G0_NC,
259 BFD_RELOC_AARCH64_MOVW_PREL_G1, BFD_RELOC_AARCH64_MOVW_PREL_G1_NC,
260 BFD_RELOC_AARCH64_MOVW_PREL_G2, BFD_RELOC_AARCH64_MOVW_PREL_G2_NC,
261 BFD_RELOC_AARCH64_MOVW_PREL_G3.
262 (process_movw_reloc_info): Supports newly added MOVW_PREL relocations.
263 (md_apply_fix): Likewise
264 * testsuite/gas/aarch64/prel_g0.s: New.
265 * testsuite/gas/aarch64/prel_g0.d: New.
266 * testsuite/gas/aarch64/prel_g0_nc.s: New.
267 * testsuite/gas/aarch64/prel_g0_nc.d: New.
268 * testsuite/gas/aarch64/prel_g1.s: New.
269 * testsuite/gas/aarch64/prel_g1.d: New.
270 * testsuite/gas/aarch64/prel_g1_nc.s: New.
271 * testsuite/gas/aarch64/prel_g1_nc.d: New.
272 * testsuite/gas/aarch64/prel_g2.s: New.
273 * testsuite/gas/aarch64/prel_g2.d: New.
274 * testsuite/gas/aarch64/prel_g2_nc.s: New.
275 * testsuite/gas/aarch64/prel_g2_nc.d: New.
276 * testsuite/gas/aarch64/prel_g3.s: New.
277 * testsuite/gas/aarch64/prel_g3.d: New.
278
279 2018-01-23 Maciej W. Rozycki <macro@mips.com>
280
281 * configure.ac: Also set `mips_default_abi' to N32_ABI for
282 `mips64*-ps2-elf*'.
283 * configure: Regenerate.
284
285 2018-01-23 Maciej W. Rozycki <macro@mips.com>
286
287 * config/tc-mips.c (options): Remove OPTION_COMPAT_ARCH_BASE
288 enum value.
289
290 2018-01-23 Igor Tsimbalist <igor.v.tsimbalist@intel.com>
291
292 * config/tc-i386.c (cpu_arch): Add .pconfig.
293 * doc/c-i386.texi: Document .pconfig.
294 * testsuite/gas/i386/i386.exp: Add PCONFIG tests.
295 * testsuite/gas/i386/pconfig-intel.d: New test.
296 * testsuite/gas/i386/pconfig.d: Likewise.
297 * testsuite/gas/i386/pconfig.s: Likewise.
298 * testsuite/gas/i386/x86-64-pconfig-intel.d: Likewise.
299 * testsuite/gas/i386/x86-64-pconfig.d: Likewise.
300 * testsuite/gas/i386/x86-64-pconfig.s: Likewise.
301
302 2018-01-23 Igor Tsimbalist <igor.v.tsimbalist@intel.com>
303
304 * config/tc-i386.c (cpu_arch): Add .wbnoinvd.
305 * doc/c-i386.texi: Document .wbnoinvd.
306 * testsuite/gas/i386/i386.exp: Add WBNOINVD tests.
307 * testsuite/gas/i386/wbnoinvd-intel.d: New test.
308 * testsuite/gas/i386/wbnoinvd.d: Likewise.
309 * testsuite/gas/i386/wbnoinvd.s: Likewise.
310 * testsuite/gas/i386/x86-64-wbnoinvd-intel.d: Likewise.
311 * testsuite/gas/i386/x86-64-wbnoinvd.d: Likewise.
312 * testsuite/gas/i386/x86-64-wbnoinvd.s: Likewise.
313
314 2018-01-23 Maciej W. Rozycki <macro@mips.com>
315
316 * config/tc-mips.c (md_show_usage): Correctly indicate the
317 configuration-specific default ABI.
318
319 2018-01-23 Maciej W. Rozycki <macro@mips.com>
320
321 * config/tc-mips.c (md_show_usage): Report `-mmips16e2' and
322 `-mno-mips16e2' options.
323
324 2018-01-22 Maciej W. Rozycki <macro@mips.com>
325
326 * doc/c-mips.texi (MIPS ASE Instruction Generation Overrides):
327 Correct syntax of the `.set nomips16e2' directive description.
328
329 2018-01-22 Oleg Endo <olegendo@gcc.gnu.org>
330
331 PR 22737
332 * config/tc-rx.c (rx_start_line): Handle escaped double-quote character.
333 * testsuite/gas/rx/pr22737.s: New test.
334 * testsuite/gas/rx/pr22737.d: Likewise.
335 * testsuite/gas/rx/rx.exp: Run the new test.
336
337 2018-01-19 Thomas Preud'homme <thomas.preudhomme@arm.com>
338
339 * config/tc-arm.c (ToC macro): Remove spurious comment.
340 (ToU macro): Likewise.
341
342 2018-01-17 Jim Wilson <jimw@sifive.com>
343
344 * config/tc-riscv.c (validate_riscv_insn) <'z'>: New.
345 (riscv_ip) <'z'>: New.
346
347 2018-01-17 Igor Tsimbalist <igor.v.tsimbalist@intel.com>
348
349 * config/tc-i386.c (cpu_arch): Delete .cet. Add .ibt, .shstk.
350 (cpu_noarch): Add noibt, noshstk.
351 (parse_insn): Change cpucet to cpuibt.
352 * doc/c-i386.texi: Delete .cet. Add .ibt, .shstk.
353 * testsuite/gas/i386/cet-ibt-inval.l: New test.
354 * testsuite/gas/i386/cet-ibt-inval.s: Likewise.
355 * testsuite/gas/i386/cet-shstk-inval.l: Likewise.
356 * testsuite/gas/i386/cet-shstk-inval.s: Likewise.
357 * testsuite/gas/i386/x86-64-cet-ibt-inval.l: Likewise.
358 * testsuite/gas/i386/x86-64-cet-ibt-inval.s: Likewise.
359 * testsuite/gas/i386/x86-64-cet-shstk-inval.l: Likewise.
360 * testsuite/gas/i386/x86-64-cet-shstk-inval.s: Likewise.
361
362 2018-01-16 Nick Clifton <nickc@redhat.com>
363
364 * po/fr.po: Updated French translation.
365
366 2018-01-15 Jim Wilson <jimw@sifive.com>
367
368 * testsuite/gas/riscv/c-zero-imm.s: Test addi that compresses to c.nop.
369 * testsuite/gas/riscv/c-zero-imm.d: Likewise.
370
371 2018-01-15 Thomas Preud'homme <thomas.preudhomme@arm.com>
372
373 * config/tc-arm.c (ToC): Define macro.
374 (ToU): Likewise.
375 (insns): Make use of above macros for new instructions introduced in
376 Armv8-M.
377
378 2018-01-15 Thomas Preud'homme <thomas.preudhomme@arm.com>
379
380 * config/tc-arm.c (insns): Make blxns, bxns, tt, ttt, tta, ttat, vlldm
381 and vlstm conditionally executable and reindent parameters.
382 * testsuite/gas/arm/archv8m-cmse-main.s: Add conditional version of
383 aforementionned instructions.
384
385 2018-01-15 Thomas Preud'homme <thomas.preudhomme@arm.com>
386
387 * config/tc-arm.c (it_fsm_post_encode): Do not warn if targeting M
388 profile architecture or if in autodetection mode. Clarify that
389 deprecation is for performance reason and concerns Armv8-A and Armv8-R.
390 * testsuite/gas/arm/armv8-ar-bad.l: Adapt to new IT deprecation warning
391 message.
392 * testsuite/gas/arm/armv8-ar-it-bad.l: Likewise.
393 * testsuite/gas/arm/sp-pc-validations-bad-t-v8a.l: Likewise.
394 * testsuite/gas/arm/udf.l: Likewise.
395 * testsuite/gas/arm/udf.d: Assemble for Armv8-A explicitely.
396
397 2018-01-15 Nick Clifton <nickc@redhat.com>
398
399 * po/uk.po: Updated Ukranian translation.
400
401 2018-01-13 Nick Clifton <nickc@redhat.com>
402
403 * po/gas.pot: Regenerated.
404
405 2018-01-13 Nick Clifton <nickc@redhat.com>
406
407 * configure: Regenerate.
408
409 2018-01-13 Nick Clifton <nickc@redhat.com>
410
411 2.30 branch created.
412 * NEWS: Add marker for 2.30.
413
414 2018-01-12 Gunther Nikl <gnikl@users.sourceforge.net>
415
416 * gas/config/aout_gnu.h (USE_EXTENDED_RELOC): Explicitly
417 define to 0 and 1. Remove a dangling reference to "AMD 29000"
418 in a comment.
419
420 2018-01-11 Igor Tsimbalist <igor.v.tsimbalist@intel.com>
421
422 * testsuite/i386/avx512_4fmaps_vl-warn.l: Likewise.
423 * testsuite/i386/avx512_4fmaps_vl-warn.s: Likewise.
424 * testsuite/i386/avx512_4fmaps_vl.d: Likewise.
425 * testsuite/i386/avx512_4fmaps_vl.s: Likewise.
426 * testsuite/i386/avx512_4vnniw_vl-intel.d: Likewise.
427 * testsuite/i386/avx512_4vnniw_vl.d: Likewise.
428 * testsuite/i386/avx512_4vnniw_vl.s: Likewise.
429 * testsuite/i386/i386.exp: Removed _vl tests for 4fmaps an 4vnniw
430 tests.
431 * testsuite/i386/x86-64-avx512_4fmaps_vl-intel.d: Removed.
432 * testsuite/i386/x86-64-avx512_4fmaps_vl-warn.l: Likewise.
433 * testsuite/i386/x86-64-avx512_4fmaps_vl-warn.s: Likewise.
434 * testsuite/i386/x86-64-avx512_4fmaps_vl.d: Likewise.
435 * testsuite/i386/x86-64-avx512_4fmaps_vl.s: Likewise.
436 * testsuite/i386/x86-64-avx512_4vnniw_vl-intel.d: Likewise.
437 * testsuite/i386/x86-64-avx512_4vnniw_vl.d: Likewise.
438 * testsuite/i386/x86-64-avx512_4vnniw_vl.s: Likewise.
439
440 2018-01-11 Alan Modra <amodra@gmail.com>
441
442 * config/tc-arm.c (aeabi_set_public_attributes): Avoid false
443 positive "‘profile’ may be used uninitialized".
444
445 2018-01-10 Jan Beulich <jbeulich@suse.com>
446
447 * testsuite/gas/i386/avx512_4fmaps.s,
448 testsuite/gas/i386/avx512_4fmaps_vl.s,
449 testsuite/gas/i386/x86-64-avx512_4fmaps.s,
450 testsuite/gas/i386/x86-64-avx512_4fmaps_vl.s: Actually test
451 Disp8 forms (and the transition happening at the right
452 boundary).
453 * testsuite/gas/i386/avx512_4fmaps.d,
454 testsuite/gas/i386/avx512_4fmaps-intel.d,
455 testsuite/gas/i386/avx512_4fmaps_vl.d,
456 testsuite/gas/i386/avx512_4fmaps_vl-intel.d,
457 testsuite/gas/i386/x86-64-avx512_4fmaps.d,
458 testsuite/gas/i386/x86-64-avx512_4fmaps-intel.d,
459 testsuite/gas/i386/x86-64-avx512_4fmaps_vl.d,
460 testsuite/gas/i386/x86-64-avx512_4fmaps_vl-intel.d: Adjust
461 expectations.
462
463 2018-01-10 Jan Beulich <jbeulich@suse.com>
464
465 * testsuite/gas/i386/avx512bw.s,
466 testsuite/gas/i386/avx512bw_vl.s: Add VPCMP* tests with memory
467 operands.
468 * testsuite/gas/i386/avx512bw-intel.d,
469 testsuite/gas/i386/avx512bw.d,
470 testsuite/gas/i386/avx512bw_vl-intel.d.
471 testsuite/gas/i386/avx512bw_vl.d: Adjust expectations.
472
473 2018-01-09 Jim Wilson <jimw@sifive.com>
474
475 * testsuite/gas/riscv/auipc-x0.d: New.
476 * testsuite/gas/riscv/auipc-x0.s: New.
477
478 2018-01-09 James Greenhalgh <james.greenhalgh@arm.com>
479
480 * config/tc-arm.c (insns): Add csdb, enable for Armv3 and above
481 in Arm execution state, and Armv6T2 and above in Thumb execution
482 state.
483 * testsuite/gas/arm/csdb.s: New.
484 * testsuite/gas/arm/csdb.d: New.
485 * testsuite/gas/arm/thumb2_it_bad.l: Add csdb.
486 * testsuite/gas/arm/thumb2_it_bad.s: Add csdb.
487
488 2018-01-09 James Greenhalgh <james.greenhalgh@arm.com>
489
490 * testsuite/gas/aarch64/system.d: Update expected results to expect
491 CSDB for hint 0x14.
492
493 2018-01-08 H.J. Lu <hongjiu.lu@intel.com>
494
495 PR gas/22681
496 * testsuite/gas/i386/i386.exp: Run x86-64-movd and
497 x86-64-movd-intel.
498 * testsuite/gas/i386/x86-64-movd-intel.d: New file.
499 * testsuite/gas/i386/x86-64-movd.d: Likewise.
500 * testsuite/gas/i386/x86-64-movd.s: Likewise.
501
502 2018-01-08 Nick Clifton <nickc@redhat.com>
503
504 PR 22553
505 * doc/c-i386.texi (i386-Directives): Document the .largecomm
506 directive.
507
508 2018-01-04 Jim Wilson <jimw@sifive.com>
509
510 * testsuite/gas/riscv/priv-reg.s: Add missing stval and mtval.
511 * testsuite/gas/riscv/priv-reg.d: Likewise.
512
513 2018-01-03 Alan Modra <amodra@gmail.com>
514
515 Update year range in copyright notice of all files.
516
517 2018-01-02 Nick Clifton <nickc@redhat.com>
518
519 PR 18119
520 * config/tc-arm.c (do_mrs): Fix test of bits 16-19 in non-banked
521 version of ARM MRS instruction.
522
523 For older changes see ChangeLog-2017
524 \f
525 Copyright (C) 2018 Free Software Foundation, Inc.
526
527 Copying and distribution of this file, with or without modification,
528 are permitted in any medium without royalty provided the copyright
529 notice and this notice are preserved.
530
531 Local Variables:
532 mode: change-log
533 left-margin: 8
534 fill-column: 74
535 version-control: never
536 End:
This page took 0.042108 seconds and 4 git commands to generate.