* common.h (EM_M32C_NEW): Rename to EM_M32C.
[deliverable/binutils-gdb.git] / gas / ChangeLog
CommitLineData
bb35fb24
NC
12008-06-12 Adam Nemet <anemet@caviumnetworks.com>
2
3 * config/tc-mips.c (validate_mips_insn): Handle field descriptors
4 +x, +X, +p, +P, +s, +S.
5 (mips_ip): Likewise.
6
e8568f6c
EW
72008-06-09 Eric B. Weddington <eric.weddington@atmel.com>
8
9 * config/tc-avr.c (mcu_types): Remove support for ATmega32HVB device.
10 * doc/c-avr.texi: Likewise.
11
83bd7402
NC
122008-06-04 Nick Clifton <nickc@redhat.com>
13
14 * app.c (do_scrub_chars): Do not UNGET an EOF value.
15
cb19c032
L
162008-06-03 H.J. Lu <hongjiu.lu@intel.com>
17
18 * config/tc-i386.c (set_sse_check): New.
19 (md_pseudo_table): Add "sse_check".
20
4ecab7d4
PB
212008-06-03 Paul Brook <paul@codesourcery.com>
22
23 * config/tc-arm.c (do_t_rbit): Populate both rm fields.
24
0a903bab
NC
252008-05-30 Nick Clifton <nickc@redhat.com>
26
27 PR 5523
28 * config/tc-avr.c (avr_ldi_expression): Do not warn about unknown
29 relocs here.
30
b15591bb
AN
312008-05-29 Maxim Kuvyrkov <maxim@codesourcery.com>
32
33 * config/tc-mips.c (mips_cpu_info_table): Move records for
34 ST Loongson-2E/2F processors to a better place.
35
95f283e8
L
362008-05-23 H.J. Lu <hongjiu.lu@intel.com>
37
38 PR gas/6518
39 * config/tc-i386.c (match_template): Report ambiguous operand
40 size, not invalid suffix when there is no match in Intel
41 syntax.
42
c462b453
PB
432008-05-22 Paul Brook <paul@codesourcery.com>
44
45 * config/tc-arm.c (parse_cond): Covert to lowercase before matching.
46
7fac0536
NC
472008-05-21 I-Jui Sung <ijsung@gmail.com>
48
49 * config/tc-arm.c (arm_cpus): Add Faraday ARMv4 and ARMv5TE
50 compatible cores: fa526, fa626, fa626te, fa726te.
51 * doc/c-arm.texi (ARM Opts): Add -mcpu={fa526, fa626, fa626te,
52 fa726te} options.
53
8944f3c2
AM
542008-05-14 Alan Modra <amodra@bigpond.net.au>
55
56 * Makefile.am: Run "make dep-am".
57 * Makefile.in: Regenerate.
58 * doc/Makefile.in: Regenerate.
59 * po/POTFILES.in: Regenerate.
60
35903be0
CM
612008-05-09 Catherine Moore <clm@codesourcery.com>
62
63 * config/tc-mips.c (mips_frob_file): Don't match MIPS16 relocs
64 with non-MIPS16 relocs.
65
c41e87e3
CF
662008-05-09 Chao-ying Fu <fu@mips.com>
67
68 * config/tc-mips.c (md_begin): Use strncmp to compare TARGET_OS, in
69 case that some characters append at the end of the name.
70 (mips_ip): Likewise.
71 (s_change_sec): Likewise.
72 (md_section_align): Likewise.
73
51c8ebc1
BW
742008-05-07 Bob Wilson <bob.wilson@acm.org>
75
76 * config/tc-xtensa.c (xtensa_create_property_segments): Use
77 xtensa_make_property_section instead of xtensa_get_property_section.
78 (xtensa_create_xproperty_segments): Likewise.
79
f1f8f695
L
802008-05-02 H.J. Lu <hongjiu.lu@intel.com>
81
82 * NEWS: Mention XSAVE, EPT and MOVBE.
83
84 * config/tc-i386.c (cpu_arch): Add .movbe and .ept.
85 (md_show_usage): Add .movbe and .ept.
86
87 * doc/c-i386.texi: Add movbe and ept to -march=. Document
88 .movbe and .ept.
89
2b661f3d
DM
902008-04-29 David S. Miller <davem@davemloft.net>
91
92 * config/tc-sparc.c (v9a_asr_table): Fix order of softint entries.
93
037b32b9
AN
942008-04-28 Adam Nemet <anemet@caviumnetworks.com>
95
96 * config/tc-mips.c (file_mips_soft_float, file_mips_single_float):
97 New statics.
98 (OPTION_ELF_BASE): Make room for new option macros.
99 (OPTION_SOFT_FLOAT, OPTION_HARD_FLOAT, OPTION_SINGLE_FLOAT,
100 OPTION_DOUBLE_FLOAT): New option macros.
101 (md_longopts): Add msoft-float, mhard-float, msingle-float and
102 mdouble-float.
103 (md_parse_option): Handle OPTION_SINGLE_FLOAT,
104 OPTION_DOUBLE_FLOAT, OPTION_SOFT_FLOAT and OPTION_HARD_FLOAT.
105 (md_show_usage): Add -msoft-float, -mhard-float, -msingle-float
106 and -mdouble-float.
107 (struct mips_set_options): New fields soft_float and single_float.
108 (mips_opts): Initialized them. Add comment for each field
109 initializer.
110 (mips_after_parse_args): Set them based on file_mips_soft_float
111 and file_mips_single_float.
112 (s_mipsset): Add support for `.set softfloat', `.set hardfloat',
113 `.set singlefloat' and `.set doublefloat'.
114 (is_opcode_valid): New function to invoke OPCODE_IS_MEMBER.
115 Handle single-float and soft-float instructions here.
116 (macro_build, mips_ip): Use it instead of OPCODE_IS_MEMBER.
117 (is_opcode_valid_16): New function.
118 (mips16_ip): Use it instead of OPCODE_IS_MEMBER.
119 (macro) <M_LDC1_AB, M_SDC1_AB, M_L_DOB, M_L_DAB, M_S_DAB,
120 M_S_DOB>: Remove special-casing of r4650.
121 * doc/c-mips.texi (-march=): Add Octeon.
122 (MIPS Opts): Document -msoft-float and -mhard-float. Document
123 -msingle-float and -mdouble-float.
124 (MIPS floating-point): New section. Document `.set softfloat' and
125 `.set hardfloat'. Document `.set singlefloat' and `.set
126 doublefloat'.
127
f04d18b7
DM
1282008-04-25 David S. Miller <davem@davemloft.net>
129
130 * config/tc-sparc.c: Accept 'softint_clear' and 'softint_set'
131 %asr aliases.
132
133 * doc/c-sparc.texi: Consistently refer to architecture 'versions',
134 rather than occaisionally 'levels'. Consistently refer to Sun's
135 UNIX variant as SunOS, every version of Solaris is also SunOS.
136 Document new 'softint_clear' and 'softint_set' aliases. Clarify
137 which architecture versions support '%dcr', '%cq', and '%gl'. Add
138 section on 32-bit/64-bit opcode translations.
139
fe4fa32c
MF
1402008-04-23 Mike Frysinger <vapier@gentoo.org>
141
142 * Makefile.am (OBJ_FORMAT_CFILES): Add config/obj-fdpicelf.c.
143 (OBJ_FORMAT_HFILES): Add config/obj-fdpicelf.h.
144 (obj-fdpicelf.o): Define.
145 * Makefile.in: Regenerate.
146 * configure.tgt: Set bfd_gas to yes when fmt is fdpicelf.
147 (bfin-*-*): Delete.
148 (bfin-*-linux-uclibc): New; set fmt to fdpicelf and em to linux.
149 (bfin-*-uclinux*): New; set fmt to elf and em to linux.
150 * config/obj-fdpicelf.c: New.
151 * config/obj-fdpicelf.h: Likewise.
152 * config/tc-bfin.c (bfin_flags, bfin_pic_flag): Set default based on
153 the OBJ_FDPIC_ELF define.
154 (OPTION_NOPIC): Define.
155 (md_longopts): Add mnopic and mno-fdpic.
156 (md_parse_option): Handle OPTION_NOPIC.
157
6194aaab
L
1582008-04-23 Paolo Bonzini <bonzini@gnu.org>
159
160 * aclocal.m4: Regenerate.
161 * configure: Regenerate.
162
1a6b486f
DM
1632008-04-23 David S. Miller <davem@davemloft.net>
164
165 * config/tc-sparc.c (v9a_asr_table): Add missing
166 'stick' and 'stick_cmpr', and document ordering rules
167 of table.
168 (tc_gen_reloc): Accept BFD_RELOC_SPARC_PC22 and
169 BFD_RELOC_SPARC_PC10.
170 * doc/c-sparc.texi: New section on Sparc constants.
171 Add documentation for %stick and %stick_cmpr.
172
879d3736
NC
1732008-04-22 David S. Miller <davem@davemloft.net>
174
175 * config/obj-elf.c (obj_elf_section_type): Add prototype
176 before obj_elf_section_word and add 'warn' arg.
177 (obj_elf_section_word): Add type pointer arg, and if no #SECTION
178 is matched, try checking for #SECTION_TYPE.
179 (obj_elf_section): Adjust for new args.
180 (obj_elf_type_name): New function.
181 (obj_elf_type): Call it, and accept STT_foo number strings
182 in .type statements as output by SunPRO compiler.
183
81f8a913
L
1842008-04-22 H.J. Lu <hongjiu.lu@intel.com>
185
186 * config/tc-i386.c (md_assemble): Don't check SSE instructions
187 if noavx is 0.
188
c15295d5
DM
1892008-04-18 David S. Miller <davem@davemloft.net>
190
191 * doc/c-sparc.texi: Add syntax section.
192
eff014d9
L
1932008-04-18 H.J. Lu <hongjiu.lu@intel.com>
194
195 * config/tc-i386.c (build_modrm_byte): Don't check FMA to swap
196 REG and NDS for instructions with immediate operand.
197
dae39acc
L
1982008-04-18 H.J. Lu <hongjiu.lu@intel.com>
199
200 * config/tc-i386.c (build_modrm_byte): Swap REG and NDS for
201 FMA.
202
739f7f82
DM
2032008-04-16 David S. Miller <davem@davemloft.net>
204
205 * config/tc-sparc.c (sparc_ip): Add support for gotdata mnemonics
206 and relocation generation.
207 (tc_gen_reloc): Likewise.
208
52b5ca5b
AS
2092008-04-15 Andrew Stubbs <andrew.stubbs@st.com>
210
211 * config/tc-sh.c (md_apply_fix): Make sure BFD_RELOC_SH_PCRELIMM8BY4
212 relocations are properly aligned, and not negative.
213
a5f245b5
NC
2142008-04-15 Khem Raj <kraj@mvista.com>
215
216 * doc/tc-arm.texi: Fix fnstart and fnend directive names.
217
19a6653c
AM
2182008-04-14 Edmar Wienskoski <edmar@freescale.com>
219
220 * config/tc-ppc.c (parse_cpu): Handle "e500mc". Extend "e500" to
221 accept e500mc instructions.
222 (md_show_usage): Document -me500mc.
223
d5a35a55
NC
2242008-04-11 Nick Clifton <nickc@redhat.com>
225
226 * listing.c (print_timestamp): Use localtime rather than
227 localtime_r since not all build environments provide the latter.
228
daf50ae7
L
2292008-04-10 H.J. Lu <hongjiu.lu@intel.com>
230
231 * NEWS: Mention -msse-check=[none|error|warning].
232
233 * config/tc-i386.c (sse_check): New.
234 (OPTION_MSSE_CHECK): Likewise.
235 (md_assemble): Check SSE instructions if needed.
236 (md_longopts): Add -msse-check.
237 (md_parse_option): Handle OPTION_MSSE_CHECK.
238 (md_show_usage): Show -msse-check=[none|error|warning].
239
240 * doc/c-i386.texi: Document -msse-check=[none|error|warning].
241