Home | History | Annotate | Line # | Download | only in gas
ChangeLog-2015 revision 1.1.1.1.2.2
      1  1.1.1.1.2.2  pgoyette 2015-12-24  Thomas Preud'homme  <thomas.preudhomme (a] arm.com>
      2  1.1.1.1.2.2  pgoyette 
      3  1.1.1.1.2.2  pgoyette 	* config/tc-arm.c (arm_ext_v6t2_v8m): New feature for instructions
      4  1.1.1.1.2.2  pgoyette 	shared between ARMv6T2 and ARMv8-M.
      5  1.1.1.1.2.2  pgoyette 	(move_or_literal_pool): Check mov.w/mvn and movw availability against
      6  1.1.1.1.2.2  pgoyette 	arm_ext_v6t2 and arm_ext_v6t2_v8m respectively instead of checking
      7  1.1.1.1.2.2  pgoyette 	arm_arch_t2.
      8  1.1.1.1.2.2  pgoyette 	(do_t_branch): Error out for wide conditional branch instructions if
      9  1.1.1.1.2.2  pgoyette 	targetting ARMv8-M Baseline.
     10  1.1.1.1.2.2  pgoyette 	(non_v6t2_wide_only_insn): Add the logic for new wide-only instructions
     11  1.1.1.1.2.2  pgoyette 	in ARMv8-M Baseline.
     12  1.1.1.1.2.2  pgoyette 	(wide_insn_ok): New function.
     13  1.1.1.1.2.2  pgoyette 	(md_assemble): Use wide_insn_ok instead of non_v6t2_wide_only_insn and
     14  1.1.1.1.2.2  pgoyette 	adapt error message for unsupported wide instruction to ARMv8-M
     15  1.1.1.1.2.2  pgoyette 	Baseline.
     16  1.1.1.1.2.2  pgoyette 	(insns): Reorganize instructions shared by ARMv8-M Baseline and
     17  1.1.1.1.2.2  pgoyette 	ARMv6t2 architecture.
     18  1.1.1.1.2.2  pgoyette 	(arm_cpus): Set feature bit ARM_EXT2_V6T2_V8M for marvell-pj4 and
     19  1.1.1.1.2.2  pgoyette 	marvell-whitney cores.
     20  1.1.1.1.2.2  pgoyette 	(arm_archs): Define armv8-m.base architecture.
     21  1.1.1.1.2.2  pgoyette 	(cpu_arch_ver): Define ARM_ARCH_V8M_BASE architecture version.
     22  1.1.1.1.2.2  pgoyette 	(aeabi_set_public_attributes): Add logic to set Tag_CPU_arch to 17 for
     23  1.1.1.1.2.2  pgoyette 	ARMv8-M Mainline.  Set Tag_DIV_use for ARMv8-M Baseline as well.
     24  1.1.1.1.2.2  pgoyette 
     25  1.1.1.1.2.2  pgoyette 2015-12-24  Thomas Preud'homme  <thomas.preudhomme (a] arm.com>
     26  1.1.1.1.2.2  pgoyette 
     27  1.1.1.1.2.2  pgoyette 	* config/tc-arm.c (arm_ext_m): Include ARMv8-M.
     28  1.1.1.1.2.2  pgoyette 	(arm_ext_v8m): New feature for ARMv8-M.
     29  1.1.1.1.2.2  pgoyette 	(arm_ext_atomics): New feature for ARMv8 atomics.
     30  1.1.1.1.2.2  pgoyette 	(do_tt): New encoding function for TT* instructions.
     31  1.1.1.1.2.2  pgoyette 	(insns): Add new entries for ARMv8-M specific instructions and
     32  1.1.1.1.2.2  pgoyette 	reorganize the ones shared by ARMv8-M Mainline and ARMv8-A.
     33  1.1.1.1.2.2  pgoyette 	(arm_archs): Define armv8-m.main architecture.
     34  1.1.1.1.2.2  pgoyette 	(cpu_arch_ver): Define ARM_ARCH_V8M_MAIN architecture version and
     35  1.1.1.1.2.2  pgoyette 	clarify the ordering rule.
     36  1.1.1.1.2.2  pgoyette 	(aeabi_set_public_attributes): Use TAG_CPU_ARCH_* macro to refer to
     37  1.1.1.1.2.2  pgoyette 	Tag_CPU_arch values for ARMv7e-M detection.  Add logic to keep setting
     38  1.1.1.1.2.2  pgoyette 	Tag_CPU_arch to ARMv8-A for -march=all.  Also set Tag_CPU_arch_profile
     39  1.1.1.1.2.2  pgoyette 	to 'A' if extension bit for atomic instructions is set, unless it is
     40  1.1.1.1.2.2  pgoyette 	ARMv8-M.  Set Tag_THUMB_ISA_use to 3 for ARMv8-M.  Set Tag_DIV_use to 0
     41  1.1.1.1.2.2  pgoyette 	for ARMv8-M Mainline.
     42  1.1.1.1.2.2  pgoyette 
     43  1.1.1.1.2.2  pgoyette 2015-12-24  Thomas Preud'homme  <thomas.preudhomme (a] arm.com>
     44  1.1.1.1.2.2  pgoyette 
     45  1.1.1.1.2.2  pgoyette 	* config/tc-arm.c (move_or_literal_pool): Check mov.w, mvm and movw
     46  1.1.1.1.2.2  pgoyette 	availability against arm_ext_v6t2 instead of checking arm_arch_t2,
     47  1.1.1.1.2.2  pgoyette 	fixing comments along the way.
     48  1.1.1.1.2.2  pgoyette 	(handle_it_state): Check arm_ext_v6t2 instead of arm_arch_t2 to
     49  1.1.1.1.2.2  pgoyette 	generate IT instruction.
     50  1.1.1.1.2.2  pgoyette 	(t1_isa_t32_only_insn): New function.
     51  1.1.1.1.2.2  pgoyette 	(md_assemble): Use above new function to check for invalid wide
     52  1.1.1.1.2.2  pgoyette 	instruction for CPU Thumb ISA and to determine what Thumb extension
     53  1.1.1.1.2.2  pgoyette 	bit is necessary for that instruction.
     54  1.1.1.1.2.2  pgoyette 	(md_apply_fix): Use arm_ext_v6t2 instead of arm_arch_t2 to decide if
     55  1.1.1.1.2.2  pgoyette 	branch is out of range.
     56  1.1.1.1.2.2  pgoyette 
     57  1.1.1.1.2.2  pgoyette 2015-12-21  Nick Clifton  <nickc (a] redhat.com>
     58  1.1.1.1.2.2  pgoyette 
     59  1.1.1.1.2.2  pgoyette 	PR gas/19386
     60  1.1.1.1.2.2  pgoyette 	* doc/as.texinfo (Strings): Prepend a space to index entries that
     61  1.1.1.1.2.2  pgoyette 	start with a backslash.  This works around a problem in the pdf
     62  1.1.1.1.2.2  pgoyette 	generator.
     63  1.1.1.1.2.2  pgoyette 
     64  1.1.1.1.2.2  pgoyette 2015-12-18  H.J. Lu  <hongjiu.lu (a] intel.com>
     65  1.1.1.1.2.2  pgoyette 
     66  1.1.1.1.2.2  pgoyette 	* config/tc-i386.c (optimize_imm): Store 32-bit immediate in
     67  1.1.1.1.2.2  pgoyette 	64-bit only for 64-bit BFD.
     68  1.1.1.1.2.2  pgoyette 	(optimize_disp): Optimize 64-bit displacement to 32-bit only
     69  1.1.1.1.2.2  pgoyette 	for 64-bit BFD.
     70  1.1.1.1.2.2  pgoyette 
     71  1.1.1.1.2.2  pgoyette 2015-12-17  Ramana Radhakrishnan  <ramana.radhakrishnan (a] arm.com>
     72  1.1.1.1.2.2  pgoyette 
     73  1.1.1.1.2.2  pgoyette 	* config/tc-arm.c (aeabi_set_public_attributes): Adjust
     74  1.1.1.1.2.2  pgoyette 	TAG_ARCH_profile for armv8-a.
     75  1.1.1.1.2.2  pgoyette 
     76  1.1.1.1.2.2  pgoyette 2015-12-16 Mickael Guene <mickael.guene (a] st.com>
     77  1.1.1.1.2.2  pgoyette 
     78  1.1.1.1.2.2  pgoyette 	* doc/c-arm.texi: Add documentation about new directives
     79  1.1.1.1.2.2  pgoyette 	* config/tc-arm.c (group_reloc_table): Add mapping between gas
     80  1.1.1.1.2.2  pgoyette 	syntax and new relocations.
     81  1.1.1.1.2.2  pgoyette 	(do_t_add_sub): Keep new relocations for add operand.
     82  1.1.1.1.2.2  pgoyette 	(do_t_mov_cmp): Keep new relocations for mov operand.
     83  1.1.1.1.2.2  pgoyette 	(insns): Use 'shifter operand with possible group relocation'
     84  1.1.1.1.2.2  pgoyette 	operand parse code for movs operand.
     85  1.1.1.1.2.2  pgoyette 	(md_apply_fix): Implement mov and add encoding when new
     86  1.1.1.1.2.2  pgoyette 	relocations on them.
     87  1.1.1.1.2.2  pgoyette 	(tc_gen_reloc): Add new relocations.
     88  1.1.1.1.2.2  pgoyette 	(arm_fix_adjustable): Since offset has a limited range ([0:255])
     89  1.1.1.1.2.2  pgoyette 	we disable adjust_reloc_syms() for new relocations.
     90  1.1.1.1.2.2  pgoyette 
     91  1.1.1.1.2.2  pgoyette 2015-12-15  Nick Clifton  <nickc (a] redhat.com>
     92  1.1.1.1.2.2  pgoyette 
     93  1.1.1.1.2.2  pgoyette 	* doc/c-msp430.texi (MSP430 Options): Remove references to a
     94  1.1.1.1.2.2  pgoyette 	non-existant silicon errata.
     95  1.1.1.1.2.2  pgoyette 	* config/tc-msp430.c: Likewise.
     96  1.1.1.1.2.2  pgoyette 
     97  1.1.1.1.2.2  pgoyette 2015-12-14  Matthew Wahab  <matthew.wahab (a] arm.com>
     98  1.1.1.1.2.2  pgoyette 
     99  1.1.1.1.2.2  pgoyette 	* config/tc-aarch64.c (parse_neon_type_for_operand): Adjust to
    100  1.1.1.1.2.2  pgoyette 	take into account new vector type 2H.
    101  1.1.1.1.2.2  pgoyette 	(vectype_to_qualifier): Likewise.
    102  1.1.1.1.2.2  pgoyette 
    103  1.1.1.1.2.2  pgoyette 2015-12-14  Matthew Wahab  <matthew.wahab (a] arm.com>
    104  1.1.1.1.2.2  pgoyette 
    105  1.1.1.1.2.2  pgoyette 	* config/tc-aarch64.c (vectype_to_qualifier): Calculate operand
    106  1.1.1.1.2.2  pgoyette 	qualifier from per-type base and offet.
    107  1.1.1.1.2.2  pgoyette 
    108  1.1.1.1.2.2  pgoyette 2015-12-14  Yoshinori Sato <ysato (a] users.sourceforge.jp>
    109  1.1.1.1.2.2  pgoyette 
    110  1.1.1.1.2.2  pgoyette 	* config/rx-defs.h(rx_cpu_type): Add RXV2 type.
    111  1.1.1.1.2.2  pgoyette 	* config/tc-rx.c(cpu_type_list): New type lookup table.
    112  1.1.1.1.2.2  pgoyette 	(md_parse_option): Use lookup table for choose cpu.
    113  1.1.1.1.2.2  pgoyette 	(md_show_usage): Add rxv2 for mcpu option.
    114  1.1.1.1.2.2  pgoyette 	* doc/c-rx.texi: Likewise.
    115  1.1.1.1.2.2  pgoyette 	* config/rx-parse.y: Add v2 instructions and ACC register.
    116  1.1.1.1.2.2  pgoyette 	(rx_check_v2): check v2 type.
    117  1.1.1.1.2.2  pgoyette 
    118  1.1.1.1.2.2  pgoyette 2015-12-14  Jan Beulich  <jbeulich (a] suse.com>
    119  1.1.1.1.2.2  pgoyette 
    120  1.1.1.1.2.2  pgoyette 	* dw2gencfi.c (dot_cfi_label): Free "name".
    121  1.1.1.1.2.2  pgoyette 
    122  1.1.1.1.2.2  pgoyette 2015-12-11  Matthew Wahab  <matthew.wahab (a] arm.com>
    123  1.1.1.1.2.2  pgoyette 
    124  1.1.1.1.2.2  pgoyette 	* config/tc-aarch64.c (aarch64_hint_opt_hsh): New.
    125  1.1.1.1.2.2  pgoyette 	(parse_barrier_psb): New.
    126  1.1.1.1.2.2  pgoyette 	(parse_operands): Add case for AARCH64_OPND_BARRIER_PSB.
    127  1.1.1.1.2.2  pgoyette 	(md_begin): Set up aarch64_hint_opt_hsh.
    128  1.1.1.1.2.2  pgoyette 
    129  1.1.1.1.2.2  pgoyette 2015-12-11  Matthew Wahab  <matthew.wahab (a] arm.com>
    130  1.1.1.1.2.2  pgoyette 
    131  1.1.1.1.2.2  pgoyette 	* config/tc-aarch64.c (aarch64_features): Add "profile".
    132  1.1.1.1.2.2  pgoyette 	* doc/c-aarch64.texi (AArch64 Extensions): Add "profile".
    133  1.1.1.1.2.2  pgoyette 
    134  1.1.1.1.2.2  pgoyette 2015-12-10  Matthew Wahab  <matthew.wahab (a] arm.com>
    135  1.1.1.1.2.2  pgoyette 
    136  1.1.1.1.2.2  pgoyette 	* config/tc-aarch64.c (parse_sys_ins_reg): Add check of
    137  1.1.1.1.2.2  pgoyette 	architectural support for system register.
    138  1.1.1.1.2.2  pgoyette 
    139  1.1.1.1.2.2  pgoyette 2015-12-10  Jose E. Marchesi  <jose.marchesi (a] oracle.com>
    140  1.1.1.1.2.2  pgoyette 
    141  1.1.1.1.2.2  pgoyette 	* doc/c-sparc.texi (Sparc-Regs): Document the %dN and %qN notation
    142  1.1.1.1.2.2  pgoyette 	for floating-point registers.
    143  1.1.1.1.2.2  pgoyette 
    144  1.1.1.1.2.2  pgoyette 2015-12-10  Matthew Wahab  <matthew.wahab (a] arm.com>
    145  1.1.1.1.2.2  pgoyette 
    146  1.1.1.1.2.2  pgoyette 	* doc/c-aarch64.texi (AArch64 Extensions): Update entry for crc.
    147  1.1.1.1.2.2  pgoyette 
    148  1.1.1.1.2.2  pgoyette 2015-12-10  Andrew Burgess  <andrew.burgess (a] embecosm.com>
    149  1.1.1.1.2.2  pgoyette 
    150  1.1.1.1.2.2  pgoyette 	* config/tc-arc.c (md_parse_option): Return 1 in order to accept
    151  1.1.1.1.2.2  pgoyette 	dummy arguments.
    152  1.1.1.1.2.2  pgoyette 
    153  1.1.1.1.2.2  pgoyette 2015-12-09  Jose E. Marchesi  <jose.marchesi (a] oracle.com>
    154  1.1.1.1.2.2  pgoyette 
    155  1.1.1.1.2.2  pgoyette 	* config/tc-sparc.c (sparc_ip): Support %dN and %qN notation for
    156  1.1.1.1.2.2  pgoyette 	double and quad-precision floating-point registers.
    157  1.1.1.1.2.2  pgoyette 
    158  1.1.1.1.2.2  pgoyette 2015-12-09  Nick Clifton  <nickc (a] redhat.com>
    159  1.1.1.1.2.2  pgoyette 
    160  1.1.1.1.2.2  pgoyette 	* config/tc-rx.c (rx_relax_frag): Fix compile time warning.
    161  1.1.1.1.2.2  pgoyette 
    162  1.1.1.1.2.2  pgoyette 2015-12-08  Jan Beulich  <jbeulich (a] suse.com>
    163  1.1.1.1.2.2  pgoyette 
    164  1.1.1.1.2.2  pgoyette 	* read.c (in_bss): New.
    165  1.1.1.1.2.2  pgoyette 	(do_align): Use it to also warn for non-zero fill in .bss.
    166  1.1.1.1.2.2  pgoyette 	(do_org): Likewise.
    167  1.1.1.1.2.2  pgoyette 	(s_space): Likewise.
    168  1.1.1.1.2.2  pgoyette 	(s_fill): Error on bad use in .bss/.struct.
    169  1.1.1.1.2.2  pgoyette 	(float_cons): Likewise.
    170  1.1.1.1.2.2  pgoyette 	(emit_leb128_expr): Likewise.
    171  1.1.1.1.2.2  pgoyette 	(emit_expr_with_reloc): Defer handling use inside .struct. Also
    172  1.1.1.1.2.2  pgoyette 	error on non-zero item added to .bss.
    173  1.1.1.1.2.2  pgoyette 	(stringer_append_char): Error on non-zero character.
    174  1.1.1.1.2.2  pgoyette 
    175  1.1.1.1.2.2  pgoyette 2015-12-08  Jan Beulich  <jbeulich (a] suse.com>
    176  1.1.1.1.2.2  pgoyette 
    177  1.1.1.1.2.2  pgoyette 	* read.c (stringer): Move absolute section check up. Return
    178  1.1.1.1.2.2  pgoyette 	right away.
    179  1.1.1.1.2.2  pgoyette 
    180  1.1.1.1.2.2  pgoyette 2015-12-08  Jan Beulich  <jbeulich (a] suse.com>
    181  1.1.1.1.2.2  pgoyette 
    182  1.1.1.1.2.2  pgoyette 	* config/obj-elf.c (elf_file_symbol): Tighten condition for
    183  1.1.1.1.2.2  pgoyette 	moving BSF_FILE symbols.
    184  1.1.1.1.2.2  pgoyette 
    185  1.1.1.1.2.2  pgoyette 2015-12-08  DJ Delorie  <dj (a] redhat.com>
    186  1.1.1.1.2.2  pgoyette 
    187  1.1.1.1.2.2  pgoyette 	* config/rl78-parse.y: Make all branches relaxable via
    188  1.1.1.1.2.2  pgoyette 	rl78_linkrelax_branch().
    189  1.1.1.1.2.2  pgoyette 	* config/tc-rl78.c (rl78_linkrelax_branch): Mark all relaxable
    190  1.1.1.1.2.2  pgoyette 	branches with relocs.
    191  1.1.1.1.2.2  pgoyette 	(options): Add OPTION_NORELAX.
    192  1.1.1.1.2.2  pgoyette 	(md_longopts): Add -mnorelax.
    193  1.1.1.1.2.2  pgoyette 	(md_parse_option): Support OPTION_NORELAX.
    194  1.1.1.1.2.2  pgoyette 	(op_type_T): Add bh, sk, call, and br.
    195  1.1.1.1.2.2  pgoyette 	(rl78_opcode_type): Likewise.
    196  1.1.1.1.2.2  pgoyette 	(rl78_relax_frag): Fix not-relaxing logic.  Add sk.
    197  1.1.1.1.2.2  pgoyette 	(md_convert_frag): Fix relocation handling.
    198  1.1.1.1.2.2  pgoyette 	(tc_gen_reloc): Strip relax relocs when not linker relaxing.
    199  1.1.1.1.2.2  pgoyette 	(md_apply_fix): Defer overflow handling for anything that needs a
    200  1.1.1.1.2.2  pgoyette 	PLT, to the linker.
    201  1.1.1.1.2.2  pgoyette 	* config/tc-rl78.h (TC_FORCE_RELOCATION): Force all relocations to
    202  1.1.1.1.2.2  pgoyette 	the linker when linker relaxing.
    203  1.1.1.1.2.2  pgoyette 	* doc/c-rl78.texi (norelax): Add.
    204  1.1.1.1.2.2  pgoyette 
    205  1.1.1.1.2.2  pgoyette 2015-12-07  Alan Modra  <amodra (a] gmail.com>
    206  1.1.1.1.2.2  pgoyette 
    207  1.1.1.1.2.2  pgoyette 	* config/tc-ppc.c (md_apply_fix): Localize variables.  Reduce casts.
    208  1.1.1.1.2.2  pgoyette 
    209  1.1.1.1.2.2  pgoyette 2015-12-04  Nick Clifton  <nickc (a] redhat.com>
    210  1.1.1.1.2.2  pgoyette 
    211  1.1.1.1.2.2  pgoyette 	PR gas/19276
    212  1.1.1.1.2.2  pgoyette 	* config/tc-arm.h (SUB_SEGMENT_ALIGN): Do not define for COFF/PE
    213  1.1.1.1.2.2  pgoyette 	targets.
    214  1.1.1.1.2.2  pgoyette 
    215  1.1.1.1.2.2  pgoyette 2015-12-04  Claudiu Zissulescu  <claziss (a] synopsys.com>
    216  1.1.1.1.2.2  pgoyette 
    217  1.1.1.1.2.2  pgoyette 	* config/tc-arc.c (arc_option): Sets all internal gas options when
    218  1.1.1.1.2.2  pgoyette 	parsing .cpu directive.
    219  1.1.1.1.2.2  pgoyette 	(declare_register_set): Declare all 64 registers.
    220  1.1.1.1.2.2  pgoyette 	(md_section_align): Refactor.
    221  1.1.1.1.2.2  pgoyette 	(md_pcrel_from_section): Remove assert.
    222  1.1.1.1.2.2  pgoyette 	(pseudo_operand_match): Fix pseudo operand match.
    223  1.1.1.1.2.2  pgoyette 	(find_reloc): Use flags filed, extend matching.
    224  1.1.1.1.2.2  pgoyette 	* config/tc-arc.h (TC_VALIDATE_FIX): Don't fixup any PLT
    225  1.1.1.1.2.2  pgoyette 	relocation.
    226  1.1.1.1.2.2  pgoyette 
    227  1.1.1.1.2.2  pgoyette 2015-12-01  Alan Modra  <amodra (a] gmail.com>
    228  1.1.1.1.2.2  pgoyette 
    229  1.1.1.1.2.2  pgoyette 	* config/aout_gnu.h: Invoke aout N_* macros with pointer to
    230  1.1.1.1.2.2  pgoyette 	struct internal_exec.
    231  1.1.1.1.2.2  pgoyette 
    232  1.1.1.1.2.2  pgoyette 2015-11-27  Matthew Wahab  <matthew.wahab (a] arm.com>
    233  1.1.1.1.2.2  pgoyette 
    234  1.1.1.1.2.2  pgoyette 	* config/tc-aarch64.c (aarch64_features): Add "fp16".
    235  1.1.1.1.2.2  pgoyette 	* doc/c-aarch64.texi (Architecture Extensions): Add "fp16".
    236  1.1.1.1.2.2  pgoyette 
    237  1.1.1.1.2.2  pgoyette 2015-11-24  Christophe Monat <christophe.monat (a] st.com>
    238  1.1.1.1.2.2  pgoyette 
    239  1.1.1.1.2.2  pgoyette 	* config/tc-arm.c (move_or_literal_pool): Do not transform ldr
    240  1.1.1.1.2.2  pgoyette 	ri,=imm into movs when ri is a high register in T1.
    241  1.1.1.1.2.2  pgoyette 
    242  1.1.1.1.2.2  pgoyette 2015-11-20  Nick Clifton  <nickc (a] redhat.com>
    243  1.1.1.1.2.2  pgoyette 
    244  1.1.1.1.2.2  pgoyette 	* po/fr.po: Updated French translation.
    245  1.1.1.1.2.2  pgoyette 	* po/uk.po: Updated Ukraninan translation.
    246  1.1.1.1.2.2  pgoyette 	* po/zh_CN.po: New simplified Chinese translation.
    247  1.1.1.1.2.2  pgoyette 	* configure.ac (ALL_LINGUAS): Add zh_CN.
    248  1.1.1.1.2.2  pgoyette 	* configure: Regenerate.
    249  1.1.1.1.2.2  pgoyette 
    250  1.1.1.1.2.2  pgoyette 2015-11-19  Matthew Wahab  <matthew.wahab (a] arm.com>
    251  1.1.1.1.2.2  pgoyette 
    252  1.1.1.1.2.2  pgoyette 	* config/tc-arm.c (arm_archs): Add "armv8.2-a".
    253  1.1.1.1.2.2  pgoyette 	* doc/c-arm.texi (-march): Add "armv8.2-a".
    254  1.1.1.1.2.2  pgoyette 
    255  1.1.1.1.2.2  pgoyette 2015-11-19  Matthew Wahab  <matthew.wahab (a] arm.com>
    256  1.1.1.1.2.2  pgoyette 
    257  1.1.1.1.2.2  pgoyette 	* config/tc-aarch64.c (aarch64_archs): Add "armv8.2-a".
    258  1.1.1.1.2.2  pgoyette 	* doc/c-aarch64.texi (-march): Likewise.
    259  1.1.1.1.2.2  pgoyette 
    260  1.1.1.1.2.2  pgoyette 2015-11-19  Alan Modra  <amodra (a] gmail.com>
    261  1.1.1.1.2.2  pgoyette 
    262  1.1.1.1.2.2  pgoyette 	* read.c (output_big_leb128): Describe "sign" parameter.
    263  1.1.1.1.2.2  pgoyette 
    264  1.1.1.1.2.2  pgoyette 2015-11-19  Alan Modra  <amodra (a] gmail.com>
    265  1.1.1.1.2.2  pgoyette 
    266  1.1.1.1.2.2  pgoyette 	* config/tc-ppc.h (SUB_SEGMENT_ALIGN): Define only for ELF.
    267  1.1.1.1.2.2  pgoyette 
    268  1.1.1.1.2.2  pgoyette 2015-11-16  Mike Frysinger  <vapier (a] gentoo.org>
    269  1.1.1.1.2.2  pgoyette 
    270  1.1.1.1.2.2  pgoyette 	* config/tc-microblaze.c (parse_imm): Add an offsetT cast.
    271  1.1.1.1.2.2  pgoyette 
    272  1.1.1.1.2.2  pgoyette 2015-11-13  Tristan Gingold  <gingold (a] adacore.com>
    273  1.1.1.1.2.2  pgoyette 
    274  1.1.1.1.2.2  pgoyette 	* configure: Regenerate.
    275  1.1.1.1.2.2  pgoyette 
    276  1.1.1.1.2.2  pgoyette 2015-11-13  Tristan Gingold  <gingold (a] adacore.com>
    277  1.1.1.1.2.2  pgoyette 
    278  1.1.1.1.2.2  pgoyette 	* NEWS: Add marker for 2.26.
    279  1.1.1.1.2.2  pgoyette 
    280  1.1.1.1.2.2  pgoyette 2015-11-12  James Greenhalgh  <james.greenhalgh (a] arm.com>
    281  1.1.1.1.2.2  pgoyette 
    282  1.1.1.1.2.2  pgoyette 	* config/tc-aarch64.c (aarch64_cpus): Add cortex-a35.
    283  1.1.1.1.2.2  pgoyette 	* doc/c-aarch64.texi (-mcpu=): Likewise.
    284  1.1.1.1.2.2  pgoyette 
    285  1.1.1.1.2.2  pgoyette 2015-11-12  James Greenhalgh  <james.greenhalgh (a] arm.com>
    286  1.1.1.1.2.2  pgoyette 
    287  1.1.1.1.2.2  pgoyette 	* config/tc-arm.c (arm_cpus): Likewise.
    288  1.1.1.1.2.2  pgoyette 	* doc/c-arm.texi (-mcpu=): Likewise.
    289  1.1.1.1.2.2  pgoyette 
    290  1.1.1.1.2.2  pgoyette 2015-11-12  Matthew Wahab  <matthew.wahab (a] arm.com>
    291  1.1.1.1.2.2  pgoyette 
    292  1.1.1.1.2.2  pgoyette 	PR gas/19217
    293  1.1.1.1.2.2  pgoyette 	* config/tc-arm.c (move_or_literal_pool): Remove redundant feature
    294  1.1.1.1.2.2  pgoyette 	check.  Fix some code formatting.  Drop use of MOVT.  Add some
    295  1.1.1.1.2.2  pgoyette 	comments.
    296  1.1.1.1.2.2  pgoyette 
    297  1.1.1.1.2.2  pgoyette 2015-11-11  Alan Modra  <amodra (a] gmail.com>
    298  1.1.1.1.2.2  pgoyette 	    Peter Bergner <bergner (a] vnet.ibm.com>
    299  1.1.1.1.2.2  pgoyette 
    300  1.1.1.1.2.2  pgoyette 	* doc/as.texinfo (Target PowerPC): Document -mpower9 and -mpwr9.
    301  1.1.1.1.2.2  pgoyette 	* doc/c-ppc.texi (PowerPC-Opts):  Likewise.
    302  1.1.1.1.2.2  pgoyette 	* config/tc-ppc.c (md_show_usage): Likewise.
    303  1.1.1.1.2.2  pgoyette 	(md_assemble): Handle BFD_RELOC_PPC_REL16DX_HA.
    304  1.1.1.1.2.2  pgoyette 	(md_apply_fix): Likewise.
    305  1.1.1.1.2.2  pgoyette 	(ppc_handle_align): Handle power9's group ending nop.
    306  1.1.1.1.2.2  pgoyette 
    307  1.1.1.1.2.2  pgoyette 2015-11-09  Jim Wilson  <jim.wilson (a] linaro.org>
    308  1.1.1.1.2.2  pgoyette 
    309  1.1.1.1.2.2  pgoyette 	* config/tc-aarch64.c (aarch64_cpus): Add qdf24xx.
    310  1.1.1.1.2.2  pgoyette 	* config/tc-arm.c (arm_cpus): Likewise.
    311  1.1.1.1.2.2  pgoyette 	* doc/c-arm.texi, doc/c-aarch64.texi: Likewise.
    312  1.1.1.1.2.2  pgoyette 
    313  1.1.1.1.2.2  pgoyette 2015-11-09  Dominik Vogt  <vogt (a] linux.vnet.ibm.com>
    314  1.1.1.1.2.2  pgoyette 
    315  1.1.1.1.2.2  pgoyette 	* read.c (parse_bitfield_cons): Fix left shift of negative value.
    316  1.1.1.1.2.2  pgoyette 	* config/tc-xstormy16.c (md_section_align): Likewise.
    317  1.1.1.1.2.2  pgoyette 	* config/tc-xgate.c (md_section_align): Likewise.
    318  1.1.1.1.2.2  pgoyette 	* config/tc-visium.c (md_section_align): Likewise.
    319  1.1.1.1.2.2  pgoyette 	* config/tc-v850.c (md_section_align): Likewise.
    320  1.1.1.1.2.2  pgoyette 	* config/tc-tic6x.c (md_section_align): Likewise.
    321  1.1.1.1.2.2  pgoyette 	* config/tc-sh.c (SH64PCREL32_M, SH64PCREL48_M, SH64PCREL32_M)
    322  1.1.1.1.2.2  pgoyette 	(MOVI_32_M, MOVI_48_M, MOVI_32_M, md_section_align): Likewise.
    323  1.1.1.1.2.2  pgoyette 	* config/tc-sh64.c (shmedia_md_estimate_size_before_relax): Likewise.
    324  1.1.1.1.2.2  pgoyette 	* config/tc-score.c (s3_section_align): Likewise.
    325  1.1.1.1.2.2  pgoyette 	* config/tc-score7.c (s7_section_align): Likewise.
    326  1.1.1.1.2.2  pgoyette 	* config/tc-s390.c (md_section_align): Likewise.
    327  1.1.1.1.2.2  pgoyette 	* config/tc-rx.c (md_section_align): Likewise.
    328  1.1.1.1.2.2  pgoyette 	* config/tc-rl78.c (md_section_align): Likewise.
    329  1.1.1.1.2.2  pgoyette 	* config/tc-ppc.c (md_section_align): Likewise.
    330  1.1.1.1.2.2  pgoyette 	* config/tc-or1k.c (md_section_align): Likewise.
    331  1.1.1.1.2.2  pgoyette 	* config/tc-nds32.c (md_section_align): Likewise.
    332  1.1.1.1.2.2  pgoyette 	* config/tc-mt.c (md_section_align): Likewise.
    333  1.1.1.1.2.2  pgoyette 	* config/tc-msp430.c (md_section_align): Likewise.
    334  1.1.1.1.2.2  pgoyette 	* config/tc-mn10300.c (md_section_align): Likewise.
    335  1.1.1.1.2.2  pgoyette 	* config/tc-mn10200.c (md_section_align): Likewise.
    336  1.1.1.1.2.2  pgoyette 	* config/tc-mips.c (md_section_align): Likewise.
    337  1.1.1.1.2.2  pgoyette 	* config/tc-microblaze.c (parse_imm): Likewise.
    338  1.1.1.1.2.2  pgoyette 	* config/tc-mep.c (md_section_align): Likewise.
    339  1.1.1.1.2.2  pgoyette 	* config/tc-m68k.c (md_section_align): Likewise.
    340  1.1.1.1.2.2  pgoyette 	* config/tc-m68hc11.c (md_section_align): Likewise.
    341  1.1.1.1.2.2  pgoyette 	* config/tc-m32r.c (md_section_align): Likewise.
    342  1.1.1.1.2.2  pgoyette 	* config/tc-m32c.c (md_section_align): Likewise.
    343  1.1.1.1.2.2  pgoyette 	* config/tc-lm32.c (md_section_align): Likewise.
    344  1.1.1.1.2.2  pgoyette 	* config/tc-iq2000.c (md_section_align): Likewise.
    345  1.1.1.1.2.2  pgoyette 	* config/tc-ip2k.c (md_section_align): Likewise.
    346  1.1.1.1.2.2  pgoyette 	* config/tc-ia64.c (dot_save, dot_vframe): Likewise.
    347  1.1.1.1.2.2  pgoyette 	* config/tc-i960.c (md_number_to_field, md_section_align): Likewise.
    348  1.1.1.1.2.2  pgoyette 	* config/tc-i386.c (md_section_align): Likewise.
    349  1.1.1.1.2.2  pgoyette 	* config/tc-i370.c (md_section_align): Likewise.
    350  1.1.1.1.2.2  pgoyette 	* config/tc-frv.c (md_section_align): Likewise.
    351  1.1.1.1.2.2  pgoyette 	* config/tc-fr30.c (md_section_align): Likewise.
    352  1.1.1.1.2.2  pgoyette 	* config/tc-epiphany.c (md_section_align): Likewise.
    353  1.1.1.1.2.2  pgoyette 	* config/tc-d30v.c (md_section_align): Likewise.
    354  1.1.1.1.2.2  pgoyette 	* config/tc-d10v.c (md_section_align): Likewise.
    355  1.1.1.1.2.2  pgoyette 	* config/tc-cr16.c (l_cons): Likewise.
    356  1.1.1.1.2.2  pgoyette 	* config/tc-bfin.c (md_section_align): Likewise.
    357  1.1.1.1.2.2  pgoyette 	* config/tc-arm.c (md_section_align): Likewise.
    358  1.1.1.1.2.2  pgoyette 	* config/tc-arc.c (md_section_align): Likewise.
    359  1.1.1.1.2.2  pgoyette 	* config/bfin-parse.y (expr_1): Likewise.
    360  1.1.1.1.2.2  pgoyette 
    361  1.1.1.1.2.2  pgoyette 2015-11-02  Nick Clifton  <nickc (a] redhat.com>
    362  1.1.1.1.2.2  pgoyette 
    363  1.1.1.1.2.2  pgoyette 	* config/rx-parse.y: Allow zero value for 5-bit displacements.
    364  1.1.1.1.2.2  pgoyette 
    365  1.1.1.1.2.2  pgoyette 2015-11-02  Nick Clifton  <nickc (a] redhat.com>
    366  1.1.1.1.2.2  pgoyette 
    367  1.1.1.1.2.2  pgoyette 	* config/tc-rx.c (parse_rx_section): Align parameter provides a
    368  1.1.1.1.2.2  pgoyette 	multiple of n argument, not a power of n argument.
    369  1.1.1.1.2.2  pgoyette 
    370  1.1.1.1.2.2  pgoyette 2015-10-29  Nick Clifton  <nickc (a] redhat.com>
    371  1.1.1.1.2.2  pgoyette 
    372  1.1.1.1.2.2  pgoyette 	* config/tc-aarch64.c (elf64_aarch64_target_format): Select the
    373  1.1.1.1.2.2  pgoyette 	cloudabi format if the TARGET_OS is cloudabi.
    374  1.1.1.1.2.2  pgoyette 
    375  1.1.1.1.2.2  pgoyette 2015-10-29  Thomas Preud'homme  <thomas.preudhomme (a] arm.com>
    376  1.1.1.1.2.2  pgoyette 
    377  1.1.1.1.2.2  pgoyette 	* config/tc-arm.c (insns): Guard cps by arm_ext_v6_notm instead of
    378  1.1.1.1.2.2  pgoyette 	arm_ext_v6_dsp.
    379  1.1.1.1.2.2  pgoyette 
    380  1.1.1.1.2.2  pgoyette 2015-10-28  Claudiu Zissulescu  <claziss (a] synopsys.com>
    381  1.1.1.1.2.2  pgoyette 
    382  1.1.1.1.2.2  pgoyette 	* config/tc-arc.c (tokenize_arguments): Avoid creating unused
    383  1.1.1.1.2.2  pgoyette 	symbols when parsing relocation types.
    384  1.1.1.1.2.2  pgoyette 	(md_apply_fix): Handle TLS relocations. Fix BFD_RELOC_ARC_32_PCREL
    385  1.1.1.1.2.2  pgoyette 	relocation.
    386  1.1.1.1.2.2  pgoyette 	(arc_check_reloc): Emit BFD_RELOC_ARC_32_PCREL relocation.
    387  1.1.1.1.2.2  pgoyette 
    388  1.1.1.1.2.2  pgoyette 2015-10-27  Jim Wilson  <jim.wilson (a] linaro.org>
    389  1.1.1.1.2.2  pgoyette 
    390  1.1.1.1.2.2  pgoyette 	* config/tc-arm.c (selected_cpu_name): Increase length of array to
    391  1.1.1.1.2.2  pgoyette 	accomodate "Samsung Exynos M1".
    392  1.1.1.1.2.2  pgoyette 	(arm_parse_cpu): Add assertion and length check to prevent
    393  1.1.1.1.2.2  pgoyette 	overfilling selected_cpu_name.
    394  1.1.1.1.2.2  pgoyette 
    395  1.1.1.1.2.2  pgoyette 2015-10-22  Nick Clifton  <nickc (a] redhat.com>
    396  1.1.1.1.2.2  pgoyette 
    397  1.1.1.1.2.2  pgoyette 	* config/tc-msp430.c (PUSH_1X_WORKAROUND): Delete.
    398  1.1.1.1.2.2  pgoyette 	(OPTION_SILICON_ERRATA): Define.
    399  1.1.1.1.2.2  pgoyette 	(OPTION_SILICON_WARN): Define.
    400  1.1.1.1.2.2  pgoyette 	(md_parse_opton): Handle silicon errata options.
    401  1.1.1.1.2.2  pgoyette 	(md_longopts): Add silicon errata options.
    402  1.1.1.1.2.2  pgoyette 	(ms_show_usage): Report silicon errata options.
    403  1.1.1.1.2.2  pgoyette 	(msp430_srcoperand): Handle silicon errata.
    404  1.1.1.1.2.2  pgoyette 	(msp430_operands): Likewise. Improve nop insertion.
    405  1.1.1.1.2.2  pgoyette 	(msp430_fix_adjustable): Update warning generation.
    406  1.1.1.1.2.2  pgoyette 	* doc/c-msp430.texi: Document silicon errata options.
    407  1.1.1.1.2.2  pgoyette 
    408  1.1.1.1.2.2  pgoyette 2015-10-22  H.J. Lu  <hongjiu.lu (a] intel.com>
    409  1.1.1.1.2.2  pgoyette 
    410  1.1.1.1.2.2  pgoyette 	* configure.ac: Properly check
    411  1.1.1.1.2.2  pgoyette 	--enable-compressed-debug-sections={yes,all}.
    412  1.1.1.1.2.2  pgoyette 	* configure: Regenerated.
    413  1.1.1.1.2.2  pgoyette 
    414  1.1.1.1.2.2  pgoyette 2015-10-22  H.J. Lu  <hongjiu.lu (a] intel.com>
    415  1.1.1.1.2.2  pgoyette 
    416  1.1.1.1.2.2  pgoyette 	PR gas/19109
    417  1.1.1.1.2.2  pgoyette 	* configure.ac: Handle --enable-compressed-debug-sections=*,gas,*.
    418  1.1.1.1.2.2  pgoyette 	* configure: Regenerated.
    419  1.1.1.1.2.2  pgoyette 
    420  1.1.1.1.2.2  pgoyette 2015-10-22  H.J. Lu  <hongjiu.lu (a] intel.com>
    421  1.1.1.1.2.2  pgoyette 
    422  1.1.1.1.2.2  pgoyette 	* config/tc-i386.c (tc_i386_fix_adjustable): Handle
    423  1.1.1.1.2.2  pgoyette 	BFD_RELOC_X86_64_GOTPCRELX and BFD_RELOC_X86_64_REX_GOTPCRELX.
    424  1.1.1.1.2.2  pgoyette 	(tc_gen_reloc): Likewise.
    425  1.1.1.1.2.2  pgoyette 	(i386_validate_fix): Generate BFD_RELOC_X86_64_GOTPCRELX or
    426  1.1.1.1.2.2  pgoyette 	BFD_RELOC_X86_64_REX_GOTPCRELX if fx_tcbit2 is set.
    427  1.1.1.1.2.2  pgoyette 	* config/tc-i386.h (TC_FORCE_RELOCATION_LOCAL): Also return
    428  1.1.1.1.2.2  pgoyette 	true for BFD_RELOC_X86_64_GOTPCRELX and
    429  1.1.1.1.2.2  pgoyette 	BFD_RELOC_X86_64_REX_GOTPCRELX.
    430  1.1.1.1.2.2  pgoyette 
    431  1.1.1.1.2.2  pgoyette 2015-10-22  H.J. Lu  <hongjiu.lu (a] intel.com>
    432  1.1.1.1.2.2  pgoyette 
    433  1.1.1.1.2.2  pgoyette 	* config/tc-i386.c (tc_i386_fix_adjustable): Handle
    434  1.1.1.1.2.2  pgoyette 	BFD_RELOC_386_GOT32X.
    435  1.1.1.1.2.2  pgoyette 	(tc_gen_reloc): Likewise.
    436  1.1.1.1.2.2  pgoyette 	(match_template): Force 0x8b encoding for "mov foo@GOT, %eax".
    437  1.1.1.1.2.2  pgoyette 	(output_disp): Check for "call/jmp *mem", "mov mem, %reg",
    438  1.1.1.1.2.2  pgoyette 	"test %reg, mem" and "binop mem, %reg" where binop is one of
    439  1.1.1.1.2.2  pgoyette 	adc, add, and, cmp, or, sbb, sub, xor instructions.  Set
    440  1.1.1.1.2.2  pgoyette 	fx_tcbit if the REX prefix is generated.  Set fx_tcbit2 if
    441  1.1.1.1.2.2  pgoyette 	BFD_RELOC_386_GOT32X should be generated.
    442  1.1.1.1.2.2  pgoyette 	(i386_validate_fix): Generate BFD_RELOC_386_GOT32X if fx_tcbit2
    443  1.1.1.1.2.2  pgoyette 	is set.
    444  1.1.1.1.2.2  pgoyette 
    445  1.1.1.1.2.2  pgoyette 2015-10-21  Nick Clifton  <nickc (a] redhat.com>
    446  1.1.1.1.2.2  pgoyette 
    447  1.1.1.1.2.2  pgoyette 	PR gas/19109
    448  1.1.1.1.2.2  pgoyette 	* configure.ac: Restore --enable-compressed-debug-sections, with
    449  1.1.1.1.2.2  pgoyette 	options of all, none or gas.
    450  1.1.1.1.2.2  pgoyette 	Do not enable compressed debug sections by default for x86 Linux
    451  1.1.1.1.2.2  pgoyette 	targets.
    452  1.1.1.1.2.2  pgoyette 	* configure: Regenerate.
    453  1.1.1.1.2.2  pgoyette 
    454  1.1.1.1.2.2  pgoyette 2015-10-20  H.J. Lu  <hongjiu.lu (a] intel.com>
    455  1.1.1.1.2.2  pgoyette 
    456  1.1.1.1.2.2  pgoyette 	PR gas/19109
    457  1.1.1.1.2.2  pgoyette 	* NEWS: Update --enable-compressed-debug-sections=.
    458  1.1.1.1.2.2  pgoyette 	* configure.ac: Remove --enable-compressed-debug-sections.
    459  1.1.1.1.2.2  pgoyette 	(DEFAULT_FLAG_COMPRESS_DEBUG): Check
    460  1.1.1.1.2.2  pgoyette 	--enable-compressed-debug-sections={all,gas} instead of
    461  1.1.1.1.2.2  pgoyette 	--enable-compressed-debug-sections.  For x86 Linux targets,
    462  1.1.1.1.2.2  pgoyette 	default to compressing debug sections.
    463  1.1.1.1.2.2  pgoyette 	* configure: Regenerated.
    464  1.1.1.1.2.2  pgoyette 
    465  1.1.1.1.2.2  pgoyette 2015-10-19  Nick Clifton  <nickc (a] redhat.com>
    466  1.1.1.1.2.2  pgoyette 
    467  1.1.1.1.2.2  pgoyette 	PR gas/19109
    468  1.1.1.1.2.2  pgoyette 	* configure.ac: Add option --enable-compressed-debug-sections.
    469  1.1.1.1.2.2  pgoyette 	This sets the default behaviour for compressing debug sections.
    470  1.1.1.1.2.2  pgoyette 	* as.c (flag_compress_debug): Define and initialise to
    471  1.1.1.1.2.2  pgoyette 	COMPRESS_DEBUG_GABI_ZLIB if DEFAULT_COMPRESS_DEBUG is set.
    472  1.1.1.1.2.2  pgoyette 	(show_usage): Indicate whether --no-compress-debug-sections
    473  1.1.1.1.2.2  pgoyette 	or --compress-debug-sections is the default.
    474  1.1.1.1.2.2  pgoyette 	* config/tc-i386.c (flag_compress_debug): Delete definition.
    475  1.1.1.1.2.2  pgoyette 	* doc/as.texinfo (--nocompress-debug-sectionas): Update
    476  1.1.1.1.2.2  pgoyette 	description.
    477  1.1.1.1.2.2  pgoyette 	* NEWS: Announce the new feature.
    478  1.1.1.1.2.2  pgoyette 	* config.in: Regenerate.
    479  1.1.1.1.2.2  pgoyette 	* configure: Regenerate.
    480  1.1.1.1.2.2  pgoyette 
    481  1.1.1.1.2.2  pgoyette 2015-10-12  Nick Clifton  <nickc (a] redhat.com>
    482  1.1.1.1.2.2  pgoyette 
    483  1.1.1.1.2.2  pgoyette 	* config/tc-msp430.c (msp430_mcu_names): Rename to
    484  1.1.1.1.2.2  pgoyette 	msp430_mcu_data.  Add fields for the ISA and hardware multiply
    485  1.1.1.1.2.2  pgoyette 	support.  Update with information from the latest devices.csv
    486  1.1.1.1.2.2  pgoyette 	file.
    487  1.1.1.1.2.2  pgoyette 	(md_parse_option): Make use of the new array.
    488  1.1.1.1.2.2  pgoyette 
    489  1.1.1.1.2.2  pgoyette 2015-10-12  Andrew Burgess  <andrew.burgess (a] embecosm.com>
    490  1.1.1.1.2.2  pgoyette 
    491  1.1.1.1.2.2  pgoyette 	* config/tc-avr.c (avr_output_property_record): Fix overwrite bug
    492  1.1.1.1.2.2  pgoyette 	for align and fill records.
    493  1.1.1.1.2.2  pgoyette 	(avr_handle_align): Record fill information for align frags.
    494  1.1.1.1.2.2  pgoyette 	(create_record_for_frag): Add next frag assertion, use correct
    495  1.1.1.1.2.2  pgoyette 	address for align records.
    496  1.1.1.1.2.2  pgoyette 
    497  1.1.1.1.2.2  pgoyette 2015-10-10  Alan Modra  <amodra (a] gmail.com>
    498  1.1.1.1.2.2  pgoyette 
    499  1.1.1.1.2.2  pgoyette 	PR gas/19113
    500  1.1.1.1.2.2  pgoyette 	* read.c (next_char_of_string): Mask char after escape.  Use
    501  1.1.1.1.2.2  pgoyette 	CHAR_MASK rather than 0xff.
    502  1.1.1.1.2.2  pgoyette 
    503  1.1.1.1.2.2  pgoyette 2015-10-07  Yao Qi  <yao.qi (a] linaro.org>
    504  1.1.1.1.2.2  pgoyette 
    505  1.1.1.1.2.2  pgoyette 	* config/tc-aarch64.c (md_begin): Access field 'name' rather
    506  1.1.1.1.2.2  pgoyette 	than 'template'.
    507  1.1.1.1.2.2  pgoyette 
    508  1.1.1.1.2.2  pgoyette 2015-10-07  Claudiu Zissulescu  <claziss (a] synopsys.com>
    509  1.1.1.1.2.2  pgoyette 
    510  1.1.1.1.2.2  pgoyette 	* config/tc-arc.c: Revamped file for ARC support.
    511  1.1.1.1.2.2  pgoyette 	* config/tc-arc.h: Likewise.
    512  1.1.1.1.2.2  pgoyette 	* doc/as.texinfo: Add new ARC options.
    513  1.1.1.1.2.2  pgoyette 	* doc/c-arc.texi: Likewise.
    514  1.1.1.1.2.2  pgoyette 
    515  1.1.1.1.2.2  pgoyette 2015-10-02  Renlin Li <renlin.li (a] arm.com>
    516  1.1.1.1.2.2  pgoyette 
    517  1.1.1.1.2.2  pgoyette 	* config/tc-aarch64.c (s_tlsdescadd): New.
    518  1.1.1.1.2.2  pgoyette 	(s_tlsdescldr): New.
    519  1.1.1.1.2.2  pgoyette 	(md_pseudo_table): Handle tlsdescadd and tlsdescldr pseudo ops.
    520  1.1.1.1.2.2  pgoyette 	(reloc_table): Add entries for BFD_RELOC_AARCH64_TLSDESC_OFF_G0_NC and
    521  1.1.1.1.2.2  pgoyette 	BFD_RELOC_AARCH64_TLSDESC_OFF_G0_NC.
    522  1.1.1.1.2.2  pgoyette 	(process_movw_reloc_info): Support AARCH64_TLSDESC_OFF_G1 and
    523  1.1.1.1.2.2  pgoyette 	AARCH64_TLSDESC_OFF_G0_NC.
    524  1.1.1.1.2.2  pgoyette 	(md_apply_fix): Likewise.
    525  1.1.1.1.2.2  pgoyette 	(aarch64_force_relocation): Likewise.
    526  1.1.1.1.2.2  pgoyette 
    527  1.1.1.1.2.2  pgoyette 2015-10-02  Renlin Li <renlin.li (a] arm.com>
    528  1.1.1.1.2.2  pgoyette 
    529  1.1.1.1.2.2  pgoyette 	* config/tc-aarch64.c (reloc_table): Add two entries for
    530  1.1.1.1.2.2  pgoyette 	gottprel_g0_nc and gottprel_g1.
    531  1.1.1.1.2.2  pgoyette 	(process_movw_reloc_info): Add support.
    532  1.1.1.1.2.2  pgoyette 	(md_apply_fix): Likewise.
    533  1.1.1.1.2.2  pgoyette 	(aarch64_force_relocation): Likewise.
    534  1.1.1.1.2.2  pgoyette 
    535  1.1.1.1.2.2  pgoyette 2015-10-02  Renlin Li <renlin.li (a] arm.com>
    536  1.1.1.1.2.2  pgoyette 
    537  1.1.1.1.2.2  pgoyette 	* config/tc-aarch64.c (reloc_table): New relocation modifier tlsgd_g0_nc.
    538  1.1.1.1.2.2  pgoyette 	(process_movw_reloc_info): Support BFD_RELOC_AARCH64_TLSGD_MOVW_G1.
    539  1.1.1.1.2.2  pgoyette 	(md_apply_fix): Likewise.
    540  1.1.1.1.2.2  pgoyette 	(aarch64_force_relocation): Likewise.
    541  1.1.1.1.2.2  pgoyette 
    542  1.1.1.1.2.2  pgoyette 2015-10-02  Renlin Li <renlin.li (a] arm.com>
    543  1.1.1.1.2.2  pgoyette 
    544  1.1.1.1.2.2  pgoyette 	* config/tc-aarch64.c (reloc_table): New relocation modifier tlsgd_g1.
    545  1.1.1.1.2.2  pgoyette 	(process_movw_reloc_info): Support BFD_RELOC_AARCH64_TLSGD_MOVW_G1.
    546  1.1.1.1.2.2  pgoyette 	(md_apply_fix): Likewise.
    547  1.1.1.1.2.2  pgoyette 	(aarch64_force_relocation): Likewise.
    548  1.1.1.1.2.2  pgoyette 
    549  1.1.1.1.2.2  pgoyette 2015-10-02  Renlin Li <renlin.li (a] arm.com>
    550  1.1.1.1.2.2  pgoyette 
    551  1.1.1.1.2.2  pgoyette 	* config/tc-aarch64.c (reloc_table): New relocation modifier
    552  1.1.1.1.2.2  pgoyette 	gotoff_g0_nc.
    553  1.1.1.1.2.2  pgoyette 	(process_movw_reloc_info): Support gotoff_g0_nc.
    554  1.1.1.1.2.2  pgoyette 	(md_apply_fix): Likewise.
    555  1.1.1.1.2.2  pgoyette 
    556  1.1.1.1.2.2  pgoyette 2015-10-02  Renlin Li  <renlin.li (a] arm.com>
    557  1.1.1.1.2.2  pgoyette 
    558  1.1.1.1.2.2  pgoyette 	* config/tc-aarch64.c (reloc_table): New relocation modifier
    559  1.1.1.1.2.2  pgoyette 	gotoff_g1.
    560  1.1.1.1.2.2  pgoyette 	(process_movw_reloc_info): Support newly added modifier.
    561  1.1.1.1.2.2  pgoyette 	(md_apply_fix): Likewise.
    562  1.1.1.1.2.2  pgoyette 
    563  1.1.1.1.2.2  pgoyette 2015-09-29  Dominik Vogt  <vogt (a] linux.vnet.ibm.com>
    564  1.1.1.1.2.2  pgoyette 
    565  1.1.1.1.2.2  pgoyette 	* doc/c-s390.texi: Add documentation.
    566  1.1.1.1.2.2  pgoyette 	Add missing code markup.
    567  1.1.1.1.2.2  pgoyette 	* config/tc-s390.c (current_flags): New static variable.
    568  1.1.1.1.2.2  pgoyette 	(s390_parse_cpu): Parse cpu flags a la "+nohtm" etc.
    569  1.1.1.1.2.2  pgoyette 	(s390_setup_opcodes): Use cpu flags to determine the set of opcodes.
    570  1.1.1.1.2.2  pgoyette 	Fix indentation.
    571  1.1.1.1.2.2  pgoyette 	(md_parse_option): Call s390_parse_cpu with the new signature.
    572  1.1.1.1.2.2  pgoyette 	(s390_machine): Likewise.
    573  1.1.1.1.2.2  pgoyette 	Keep track of current_flags.
    574  1.1.1.1.2.2  pgoyette 	Simplify code a bit.
    575  1.1.1.1.2.2  pgoyette 	undefine MAX_HISTORY at end of function.
    576  1.1.1.1.2.2  pgoyette 	(s390_machinemode): undefine MAX_HISTORY at end of function.
    577  1.1.1.1.2.2  pgoyette 	Update an error message.
    578  1.1.1.1.2.2  pgoyette 
    579  1.1.1.1.2.2  pgoyette 2015-08-11  Peter Zotov  <whitequark (a] whitequark.org>
    580  1.1.1.1.2.2  pgoyette 
    581  1.1.1.1.2.2  pgoyette 	PR ld/18759
    582  1.1.1.1.2.2  pgoyette 	* config/tc-or1k.c (tc_gen_reloc): Correct computation of PC
    583  1.1.1.1.2.2  pgoyette 	relative relocs.
    584  1.1.1.1.2.2  pgoyette 	* config/tc-or1k.h (GAS_CGEN_PRCEL_R_TYPE): Delete.
    585  1.1.1.1.2.2  pgoyette 
    586  1.1.1.1.2.2  pgoyette 2015-09-25  Ryo ONODERA  <ryo_on (a] yk.rim.or.jp>
    587  1.1.1.1.2.2  pgoyette 
    588  1.1.1.1.2.2  pgoyette 	PR 18994
    589  1.1.1.1.2.2  pgoyette 	* configure.ac (nds32): Don't use bash == in tests.
    590  1.1.1.1.2.2  pgoyette 	* configure: Regenerate.
    591  1.1.1.1.2.2  pgoyette 
    592  1.1.1.1.2.2  pgoyette 2015-09-23  Nick Clifton  <nickc (a] redhat.com>
    593  1.1.1.1.2.2  pgoyette 
    594  1.1.1.1.2.2  pgoyette 	* config/tc-ppc.c (insn_validate): Cast PPC_OPSHIFT_INV to an int.
    595  1.1.1.1.2.2  pgoyette 
    596  1.1.1.1.2.2  pgoyette 2015-09-22  Nick Clifton  <nickc (a] redhat.com>
    597  1.1.1.1.2.2  pgoyette 
    598  1.1.1.1.2.2  pgoyette 	* config/tc-rx.c (nop_7): Recode using MAX.
    599  1.1.1.1.2.2  pgoyette 
    600  1.1.1.1.2.2  pgoyette 2015-09-05  Chen Gang  <gang.chen.5i5j (a] gmail.com>
    601  1.1.1.1.2.2  pgoyette 
    602  1.1.1.1.2.2  pgoyette 	* config/tc-avr.c (md_section_align): Append UL for -1 to avoid
    603  1.1.1.1.2.2  pgoyette 	the latest gcc's warning.
    604  1.1.1.1.2.2  pgoyette 
    605  1.1.1.1.2.2  pgoyette 2015-08-27  Alan Modra  <amodra (a] gmail.com>
    606  1.1.1.1.2.2  pgoyette 
    607  1.1.1.1.2.2  pgoyette 	PR gas/18581
    608  1.1.1.1.2.2  pgoyette 	* config/tc-aarch64.h (TC_START_LABEL): Redefine.
    609  1.1.1.1.2.2  pgoyette 	* config/tc-arm.c (tc_start_label_without_colon): Delete params.
    610  1.1.1.1.2.2  pgoyette 	Use input_line_pointer directly.
    611  1.1.1.1.2.2  pgoyette 	* config/tc-arm.h (TC_START_LABEL): Redefine.
    612  1.1.1.1.2.2  pgoyette 	(TC_START_LABEL_WITHOUT_COLON): Redefine.
    613  1.1.1.1.2.2  pgoyette 	(tc_start_label_without_colon): Update prototype.
    614  1.1.1.1.2.2  pgoyette 	* config/tc-bfin.c (bfin_start_label): Delete ptr param.  Check
    615  1.1.1.1.2.2  pgoyette 	for NUL instead.
    616  1.1.1.1.2.2  pgoyette 	* config/tc-bfin.h (bfin_start_label): Update prototype.
    617  1.1.1.1.2.2  pgoyette 	(TC_START_LABEL): Redefine.
    618  1.1.1.1.2.2  pgoyette 	* config/tc-d30v.h (TC_START_LABEL): Redefine.
    619  1.1.1.1.2.2  pgoyette 	* config/tc-fr30.c (restore_colon): Rewrite.
    620  1.1.1.1.2.2  pgoyette 	(fr30_is_colon_insn): Add nul_char param.  Return int.  Bump
    621  1.1.1.1.2.2  pgoyette 	i_l_p over quote.  Update restore_colon calls.
    622  1.1.1.1.2.2  pgoyette 	* config/tc-fr30.h (TC_START_LABEL): Redefine.
    623  1.1.1.1.2.2  pgoyette 	(fr30_is_colon_insn): Update prototype.
    624  1.1.1.1.2.2  pgoyette 	* config/tc-m32c.c (restore_colon, m32c_is_colon_insn): As above.
    625  1.1.1.1.2.2  pgoyette 	* config/tc-m32c.h (TC_START_LABEL): Redefine.
    626  1.1.1.1.2.2  pgoyette 	(m32c_is_colon_insn): Update prototype.
    627  1.1.1.1.2.2  pgoyette 	* config/tc-m32r.h (TC_START_LABEL): Redefine.
    628  1.1.1.1.2.2  pgoyette 	* config/tc-mep.h (TC_START_LABEL): Redefine.
    629  1.1.1.1.2.2  pgoyette 	* config/tc-nds32.h (TC_START_LABEL): Redefine.
    630  1.1.1.1.2.2  pgoyette 	* config/tc-tic54x.c (tic54x_start_label): Replace params with
    631  1.1.1.1.2.2  pgoyette 	nul_char and next_char.  Step over trailing quote.
    632  1.1.1.1.2.2  pgoyette 	* config/tc-tic54x.h (TC_START_LABEL_WITHOUT_COLON): Redefine.
    633  1.1.1.1.2.2  pgoyette 	(tic54x_start_label): Update prototype.
    634  1.1.1.1.2.2  pgoyette 	* read.c (TC_START_LABEL): Redefine.  Update invocation.
    635  1.1.1.1.2.2  pgoyette 	(TC_START_LABEL_WITHOUT_COLON): Update invocation.
    636  1.1.1.1.2.2  pgoyette 	* config/tc-nios2.c (s_nios2_set): Save initial input_line_pointer
    637  1.1.1.1.2.2  pgoyette 	and restore if calling s_set.  Don't restore delim again.
    638  1.1.1.1.2.2  pgoyette 
    639  1.1.1.1.2.2  pgoyette 2015-08-26  Alan Modra  <amodra (a] gmail.com>
    640  1.1.1.1.2.2  pgoyette 
    641  1.1.1.1.2.2  pgoyette 	PR gas/18581
    642  1.1.1.1.2.2  pgoyette 	* config/tc-mn10200.c (md_assemble <mdr>): Move restore_line_pointer
    643  1.1.1.1.2.2  pgoyette 	call to where input line used to be restored.
    644  1.1.1.1.2.2  pgoyette 	* config/tc-mn10300.c (md_assemble <usp>): Remove redundant input
    645  1.1.1.1.2.2  pgoyette 	line restore.
    646  1.1.1.1.2.2  pgoyette 	* config/tc-tilepro.c (parse_reg_expression): Add regname var.
    647  1.1.1.1.2.2  pgoyette 
    648  1.1.1.1.2.2  pgoyette 2015-08-26  Nick Clifton  <nickc (a] redhat.com>
    649  1.1.1.1.2.2  pgoyette 
    650  1.1.1.1.2.2  pgoyette 	PR gas/18842
    651  1.1.1.1.2.2  pgoyette 	* configure.ac (AS_CHECK_DECLS): Add asprintf.
    652  1.1.1.1.2.2  pgoyette 	* configure: Regenerate.
    653  1.1.1.1.2.2  pgoyette 	* config.in: Regenerate.
    654  1.1.1.1.2.2  pgoyette 
    655  1.1.1.1.2.2  pgoyette 2015-08-25  Jose E. Marchesi  <jose.marchesi (a] oracle.com>
    656  1.1.1.1.2.2  pgoyette 
    657  1.1.1.1.2.2  pgoyette 	* config/tc-sparc.c (priv_reg_table): New privileged register
    658  1.1.1.1.2.2  pgoyette 	%pmcdper.
    659  1.1.1.1.2.2  pgoyette 
    660  1.1.1.1.2.2  pgoyette 2015-08-21  Nick Clifton  <nickc (a] redhat.com>
    661  1.1.1.1.2.2  pgoyette 
    662  1.1.1.1.2.2  pgoyette 	PR gas/18581
    663  1.1.1.1.2.2  pgoyette 	* expr.c (get_symbol_end): Rename to get_symbol_name.  Add a
    664  1.1.1.1.2.2  pgoyette 	return parameter pointing to the start of the symbol.  Allow
    665  1.1.1.1.2.2  pgoyette 	symbol names enclosed in double quotes.
    666  1.1.1.1.2.2  pgoyette 	(restore_line_pointer): New function.  Replace the NUL character
    667  1.1.1.1.2.2  pgoyette 	inserted into the input stream with the given character.  If the
    668  1.1.1.1.2.2  pgoyette 	character was a double quote, advance the input pointer.
    669  1.1.1.1.2.2  pgoyette 	* expr.h (get_symbol_end): Delete.
    670  1.1.1.1.2.2  pgoyette 	(get_symbol_name): Add prototype.
    671  1.1.1.1.2.2  pgoyette 	(restore_line_pointer): Prototype.
    672  1.1.1.1.2.2  pgoyette 	* read.h (SKIP_WHITESPACE_AFTER_NAME): New macro.
    673  1.1.1.1.2.2  pgoyette 	* doc/as.texinfo (Symbol Intro): Document that symbol names can
    674  1.1.1.1.2.2  pgoyette 	now be enclosed in double quotes.
    675  1.1.1.1.2.2  pgoyette 	* cond.c (s_ifdef): Replace get_symbol_end with get_symbol_name.
    676  1.1.1.1.2.2  pgoyette 	Use restore_line_pointer to replace the NUL in the input stream.
    677  1.1.1.1.2.2  pgoyette 	Use SKIP_WHITESPACE_AFTER_NAME to skip past the end of a symbol.
    678  1.1.1.1.2.2  pgoyette 	Check for the use of double quoted symbol names.
    679  1.1.1.1.2.2  pgoyette 	* expr.c: Likewise.
    680  1.1.1.1.2.2  pgoyette 	* config/obj-aout.c: Likewise.
    681  1.1.1.1.2.2  pgoyette 	* config/obj-coff-seh.c: Likewise.
    682  1.1.1.1.2.2  pgoyette 	* config/obj-coff.c: Likewise.
    683  1.1.1.1.2.2  pgoyette 	* config/obj-elf.c: Likewise.
    684  1.1.1.1.2.2  pgoyette 	* config/obj-evax.c: Likewise.
    685  1.1.1.1.2.2  pgoyette 	* config/obj-macho.c: Likewise.
    686  1.1.1.1.2.2  pgoyette 	* config/obj-som.c: Likewise.
    687  1.1.1.1.2.2  pgoyette 	* config/tc-alpha.c: Likewise.
    688  1.1.1.1.2.2  pgoyette 	* config/tc-arc.c: Likewise.
    689  1.1.1.1.2.2  pgoyette 	* config/tc-arm.c: Likewise.
    690  1.1.1.1.2.2  pgoyette 	* config/tc-dlx.c: Likewise.
    691  1.1.1.1.2.2  pgoyette 	* config/tc-h8300.c: Likewise.
    692  1.1.1.1.2.2  pgoyette 	* config/tc-hppa.c: Likewise.
    693  1.1.1.1.2.2  pgoyette 	* config/tc-i370.c: Likewise.
    694  1.1.1.1.2.2  pgoyette 	* config/tc-i386-intel.c: Likewise.
    695  1.1.1.1.2.2  pgoyette 	* config/tc-i386.c: Likewise.
    696  1.1.1.1.2.2  pgoyette 	* config/tc-i960.c: Likewise.
    697  1.1.1.1.2.2  pgoyette 	* config/tc-ia64.c: Likewise.
    698  1.1.1.1.2.2  pgoyette 	* config/tc-iq2000.c: Likewise.
    699  1.1.1.1.2.2  pgoyette 	* config/tc-m32r.c: Likewise.
    700  1.1.1.1.2.2  pgoyette 	* config/tc-m68hc11.c: Likewise.
    701  1.1.1.1.2.2  pgoyette 	* config/tc-m68k.c: Likewise.
    702  1.1.1.1.2.2  pgoyette 	* config/tc-microblaze.c: Likewise.
    703  1.1.1.1.2.2  pgoyette 	* config/tc-mips.c: Likewise.
    704  1.1.1.1.2.2  pgoyette 	* config/tc-mmix.c: Likewise.
    705  1.1.1.1.2.2  pgoyette 	* config/tc-mn10200.c: Likewise.
    706  1.1.1.1.2.2  pgoyette 	* config/tc-mn10300.c: Likewise.
    707  1.1.1.1.2.2  pgoyette 	* config/tc-nios2.c: Likewise.
    708  1.1.1.1.2.2  pgoyette 	* config/tc-ppc.c: Likewise.
    709  1.1.1.1.2.2  pgoyette 	* config/tc-s390.c: Likewise.
    710  1.1.1.1.2.2  pgoyette 	* config/tc-score.c: Likewise.
    711  1.1.1.1.2.2  pgoyette 	* config/tc-score7.c: Likewise.
    712  1.1.1.1.2.2  pgoyette 	* config/tc-sparc.c: Likewise.
    713  1.1.1.1.2.2  pgoyette 	* config/tc-tic4x.c: Likewise.
    714  1.1.1.1.2.2  pgoyette 	* config/tc-tic54x.c: Likewise.
    715  1.1.1.1.2.2  pgoyette 	* config/tc-tic6x.c: Likewise.
    716  1.1.1.1.2.2  pgoyette 	* config/tc-tilegx.c: Likewise.
    717  1.1.1.1.2.2  pgoyette 	* config/tc-tilepro.c: Likewise.
    718  1.1.1.1.2.2  pgoyette 	* config/tc-v850.c: Likewise.
    719  1.1.1.1.2.2  pgoyette 	* config/tc-xtensa.c: Likewise.
    720  1.1.1.1.2.2  pgoyette 	* config/tc-z80.c: Likewise.
    721  1.1.1.1.2.2  pgoyette 	* dw2gencfi.c: Likewise.
    722  1.1.1.1.2.2  pgoyette 	* dwarf2dbgc.: Likewise.
    723  1.1.1.1.2.2  pgoyette 	* ecoff.c: Likewise.
    724  1.1.1.1.2.2  pgoyette 	* read.c: Likewise.
    725  1.1.1.1.2.2  pgoyette 	* stabs.c: Likewise.
    726  1.1.1.1.2.2  pgoyette 
    727  1.1.1.1.2.2  pgoyette 2015-08-19  Jiong Wang  <jiong.wang (a] arm.com>
    728  1.1.1.1.2.2  pgoyette 
    729  1.1.1.1.2.2  pgoyette 	* config/tc-aarch64.c (reloc_table): New relocation types support for
    730  1.1.1.1.2.2  pgoyette 	dtprel_lo12.
    731  1.1.1.1.2.2  pgoyette 	(ldst_lo12_determine_real_reloc_type): Support
    732  1.1.1.1.2.2  pgoyette 	BFD_RELOC_AARCH64_TLSLD_LDST16_DTPREL_LO12,
    733  1.1.1.1.2.2  pgoyette 	BFD_RELOC_AARCH64_TLSLD_LDST16_DTPREL_LO12_NC,
    734  1.1.1.1.2.2  pgoyette 	BFD_RELOC_AARCH64_TLSLD_LDST32_DTPREL_LO12,
    735  1.1.1.1.2.2  pgoyette 	BFD_RELOC_AARCH64_TLSLD_LDST32_DTPREL_LO12_NC,
    736  1.1.1.1.2.2  pgoyette 	BFD_RELOC_AARCH64_TLSLD_LDST64_DTPREL_LO12,
    737  1.1.1.1.2.2  pgoyette 	BFD_RELOC_AARCH64_TLSLD_LDST64_DTPREL_LO12_NC,
    738  1.1.1.1.2.2  pgoyette 	BFD_RELOC_AARCH64_TLSLD_LDST8_DTPREL_LO12,
    739  1.1.1.1.2.2  pgoyette 	BFD_RELOC_AARCH64_TLSLD_LDST8_DTPREL_LO12_NC.
    740  1.1.1.1.2.2  pgoyette 	(parse_operands): Likewise.
    741  1.1.1.1.2.2  pgoyette 	(md_apply_fix): Likewise.
    742  1.1.1.1.2.2  pgoyette 	(aarch64_force_relocation): Likewise.
    743  1.1.1.1.2.2  pgoyette 	(process_movw_reloc_info): Likewise.
    744  1.1.1.1.2.2  pgoyette 
    745  1.1.1.1.2.2  pgoyette 2015-08-19  Jiong Wang  <jiong.wang (a] arm.com>
    746  1.1.1.1.2.2  pgoyette 
    747  1.1.1.1.2.2  pgoyette 	* config/tc-aarch64.c (reloc_table): New relocation modifiers,
    748  1.1.1.1.2.2  pgoyette 	"dtprel_hi12", "dtprel_g0", "dtprel_g0_nc", "dtprel_g1",
    749  1.1.1.1.2.2  pgoyette 	"dtprel_g1_nc", "dtprel_g2".
    750  1.1.1.1.2.2  pgoyette 	(md_apply_fix): Support new relocation types.
    751  1.1.1.1.2.2  pgoyette 	(aarch64_force_relocation): Likewise.
    752  1.1.1.1.2.2  pgoyette 	(process_movw_reloc_info): Likewise.
    753  1.1.1.1.2.2  pgoyette 
    754  1.1.1.1.2.2  pgoyette 2015-08-19  Jiong Wang  <jiong.wang (a] arm.com>
    755  1.1.1.1.2.2  pgoyette 
    756  1.1.1.1.2.2  pgoyette 	* config/tc-aarch64.c (reloc_table): New relocation modifiers.
    757  1.1.1.1.2.2  pgoyette 	(md_apply_fix): Support BFD_RELOC_AARCH64_TLSLD_ADD_DTPREL_LO12_NC.
    758  1.1.1.1.2.2  pgoyette 	(aarch64_force_relocation): Likewise.
    759  1.1.1.1.2.2  pgoyette 
    760  1.1.1.1.2.2  pgoyette 2015-08-17  Alan Modra  <amodra (a] gmail.com>
    761  1.1.1.1.2.2  pgoyette 
    762  1.1.1.1.2.2  pgoyette 	* config/tc-arm.c (s_align): Delete.
    763  1.1.1.1.2.2  pgoyette 	(md_pseudo_table): Use s_align_ptwo for "align".
    764  1.1.1.1.2.2  pgoyette 	* config/tc-arm.h (TC_ALIGN_ZERO_IS_DEFAULT): Define.
    765  1.1.1.1.2.2  pgoyette 	* read.c (s_align): Modify for TC_ALIGN_ZERO_IS_DEFAULT.
    766  1.1.1.1.2.2  pgoyette 
    767  1.1.1.1.2.2  pgoyette 2015-08-13  Alan Modra  <amodra (a] gmail.com>
    768  1.1.1.1.2.2  pgoyette 
    769  1.1.1.1.2.2  pgoyette 	* expr.c (operand): Rewrite handling of operands starting with "0f".
    770  1.1.1.1.2.2  pgoyette 	If atof_generic only parses "-" or "+", treat as expression.
    771  1.1.1.1.2.2  pgoyette 
    772  1.1.1.1.2.2  pgoyette 2015-08-13  Alan Modra  <amodra (a] gmail.com>
    773  1.1.1.1.2.2  pgoyette 	    DJ Delorie  <dj (a] redhat.com>
    774  1.1.1.1.2.2  pgoyette 
    775  1.1.1.1.2.2  pgoyette 	* expr.c (integer_constant): Return O_absent expression if eol.
    776  1.1.1.1.2.2  pgoyette 	(operand): For targets with both LOCAL_LABELS_FB and
    777  1.1.1.1.2.2  pgoyette 	NUMBERS_WITH_SUFFIX set, treat "0b" not followed by binary
    778  1.1.1.1.2.2  pgoyette 	digits as a local label reference.  Correct handling of 0b prefix.
    779  1.1.1.1.2.2  pgoyette 	If a suffix is not allowed, error on 0B.
    780  1.1.1.1.2.2  pgoyette 
    781  1.1.1.1.2.2  pgoyette 2015-08-13  Alan Modra  <amodra (a] gmail.com>
    782  1.1.1.1.2.2  pgoyette 
    783  1.1.1.1.2.2  pgoyette 	* doc/as.texinfo (Local Labels): Allowed range of N in local
    784  1.1.1.1.2.2  pgoyette 	labels is non-negative integers, not positive integers.
    785  1.1.1.1.2.2  pgoyette 
    786  1.1.1.1.2.2  pgoyette 2015-08-12  David Weatherford  <weath (a] cadence.com>
    787  1.1.1.1.2.2  pgoyette 
    788  1.1.1.1.2.2  pgoyette 	* config/tc-xtensa.c (struct litpool_frag, struct litpool_seg):
    789  1.1.1.1.2.2  pgoyette 	New structures.
    790  1.1.1.1.2.2  pgoyette 	(xtensa_maybe_create_literal_pool_frag): New function.
    791  1.1.1.1.2.2  pgoyette 	(litpool_seg_list, auto_litpools, auto_litpool_limit)
    792  1.1.1.1.2.2  pgoyette 	(litpool_buf, litpool_slotbuf): New static variables.
    793  1.1.1.1.2.2  pgoyette 	(option_auto_litpools, option_no_auto_litpools)
    794  1.1.1.1.2.2  pgoyette 	(option_auto_litpool_limit): New enum identifiers.
    795  1.1.1.1.2.2  pgoyette 	(md_longopts): Add entries for auto-litpools, no-auto-litpools
    796  1.1.1.1.2.2  pgoyette 	and auto-litpool-limit.
    797  1.1.1.1.2.2  pgoyette 	(md_parse_option): Handle option_auto_litpools,
    798  1.1.1.1.2.2  pgoyette 	option_no_auto_litpools and option_auto_litpool_limit.
    799  1.1.1.1.2.2  pgoyette 	(md_show_usage): Add help for --[no-]auto-litpools and
    800  1.1.1.1.2.2  pgoyette 	--auto-litpool-limit.
    801  1.1.1.1.2.2  pgoyette 	(xtensa_mark_literal_pool_location): Record a place for literal
    802  1.1.1.1.2.2  pgoyette 	pool with a call to xtensa_maybe_create_literal_pool_frag.
    803  1.1.1.1.2.2  pgoyette 	(get_literal_pool_location): Find highest priority literal pool
    804  1.1.1.1.2.2  pgoyette 	or convert candidate to literal pool when auto-litpools are used.
    805  1.1.1.1.2.2  pgoyette 	(xg_assemble_vliw_tokens): Create literal pool after jump
    806  1.1.1.1.2.2  pgoyette 	instruction.
    807  1.1.1.1.2.2  pgoyette 	(xtensa_check_frag_count): Create candidate literal pool every
    808  1.1.1.1.2.2  pgoyette 	auto_litpool_limit frags.
    809  1.1.1.1.2.2  pgoyette 	(xtensa_relax_frag): Add jump around literals to non-empty
    810  1.1.1.1.2.2  pgoyette 	literal pool.
    811  1.1.1.1.2.2  pgoyette 	(xtensa_move_literals): Estimate literal pool addresses and move
    812  1.1.1.1.2.2  pgoyette 	unreachable literals closer to their users, converting candidate
    813  1.1.1.1.2.2  pgoyette 	to literal pool if needed.
    814  1.1.1.1.2.2  pgoyette 	(xtensa_switch_to_non_abs_literal_fragment): Only emit error
    815  1.1.1.1.2.2  pgoyette 	about missing .literal_position in case auto-litpools are not
    816  1.1.1.1.2.2  pgoyette 	used.
    817  1.1.1.1.2.2  pgoyette 	* config/tc-xtensa.h (xtensa_relax_statesE): New relaxation
    818  1.1.1.1.2.2  pgoyette 	state: RELAX_LITERAL_POOL_CANDIDATE_BEGIN.
    819  1.1.1.1.2.2  pgoyette 	* doc/as.texinfo (Xtensa options):  Document --auto-litpools and
    820  1.1.1.1.2.2  pgoyette 	--no-auto-litpools options.
    821  1.1.1.1.2.2  pgoyette 	* doc/c-xtensa.texi (Xtensa options): Likewise.
    822  1.1.1.1.2.2  pgoyette 
    823  1.1.1.1.2.2  pgoyette 2015-08-12  Simon Dardis  <simon.dardis (a] imgtec.com>
    824  1.1.1.1.2.2  pgoyette 
    825  1.1.1.1.2.2  pgoyette 	* config/tc-mips.c (move_register): Change to use 'or' only.
    826  1.1.1.1.2.2  pgoyette 	(s_cpload, s_cpsetup, s_cprestore, s_cpreturn): Update to
    827  1.1.1.1.2.2  pgoyette 	use or for move.
    828  1.1.1.1.2.2  pgoyette 
    829  1.1.1.1.2.2  pgoyette 2015-08-11  Jiong Wang  <jiong.wang (a] arm.com>
    830  1.1.1.1.2.2  pgoyette 
    831  1.1.1.1.2.2  pgoyette 	* config/tc-aarch64.c (reloc_table): New relocation modifiers
    832  1.1.1.1.2.2  pgoyette 	"dtprel_lo12".
    833  1.1.1.1.2.2  pgoyette 	(md_apply_fix): Support BFD_RELOC_AARCH64_TLSLD_ADD_DTPREL_LO12.
    834  1.1.1.1.2.2  pgoyette 	(aarch64_force_relocation): Likewise.
    835  1.1.1.1.2.2  pgoyette 
    836  1.1.1.1.2.2  pgoyette 2015-08-11  Jiong Wang  <jiong.wang (a] arm.com>
    837  1.1.1.1.2.2  pgoyette 
    838  1.1.1.1.2.2  pgoyette 	* config/tc-aarch64.c (reloc_table): New relocation modifiers.
    839  1.1.1.1.2.2  pgoyette 	(md_apply_fix): Support BFD_RELOC_AARCH64_TLSLD_ADD_LO12_NC.
    840  1.1.1.1.2.2  pgoyette 	(aarch64_force_relocation): Likewise.
    841  1.1.1.1.2.2  pgoyette 
    842  1.1.1.1.2.2  pgoyette 2015-08-11  Jiong Wang  <jiong.wang (a] arm.com>
    843  1.1.1.1.2.2  pgoyette 
    844  1.1.1.1.2.2  pgoyette 	* config/tc-aarch64.c (reloc_table): New relocation modifiers.
    845  1.1.1.1.2.2  pgoyette 	(md_apply_fix): Support BFD_RELOC_AARCH64_TLSLD_ADR_PAGE21.
    846  1.1.1.1.2.2  pgoyette 	(aarch64_force_relocation): Likewise.
    847  1.1.1.1.2.2  pgoyette 
    848  1.1.1.1.2.2  pgoyette 2015-08-11  Nick Clifton  <nickc (a] redhat.com>
    849  1.1.1.1.2.2  pgoyette 
    850  1.1.1.1.2.2  pgoyette 	PR gas/18765
    851  1.1.1.1.2.2  pgoyette 	* config/tc-arm.c (move_or_literal_pool): Use U suffix to remove
    852  1.1.1.1.2.2  pgoyette 	compile time warnings about constant expressions being shifted
    853  1.1.1.1.2.2  pgoyette 	into bit 31.
    854  1.1.1.1.2.2  pgoyette 	(do_iwmmxt_wldstd): Likewise.
    855  1.1.1.1.2.2  pgoyette 	(do_iwmmxt_wrwrwr_or_imm5): Likewise.
    856  1.1.1.1.2.2  pgoyette 	(md_assemble): Likewise.
    857  1.1.1.1.2.2  pgoyette 
    858  1.1.1.1.2.2  pgoyette 	PR gas/18574
    859  1.1.1.1.2.2  pgoyette 	* config/tc-msp430.c (msp430_operands): Rewrite if statements to
    860  1.1.1.1.2.2  pgoyette 	remove redundant checks.
    861  1.1.1.1.2.2  pgoyette 	(md_apply_fix): Likewise.
    862  1.1.1.1.2.2  pgoyette 
    863  1.1.1.1.2.2  pgoyette 	PR gas/18677
    864  1.1.1.1.2.2  pgoyette 	* config/tc-mmix.c (md_assemble): Fix typo checking operands with
    865  1.1.1.1.2.2  pgoyette 	a numeric constant value.
    866  1.1.1.1.2.2  pgoyette 
    867  1.1.1.1.2.2  pgoyette 	PR gas/18678
    868  1.1.1.1.2.2  pgoyette 	* config/tc-tic4x.c (tic4x_insn_check): Fix typo.
    869  1.1.1.1.2.2  pgoyette 
    870  1.1.1.1.2.2  pgoyette 	PR gas/18679
    871  1.1.1.1.2.2  pgoyette 	* config/xtensa-relax.c (same_operand_name): Fix typo.
    872  1.1.1.1.2.2  pgoyette 
    873  1.1.1.1.2.2  pgoyette 2015-08-08  Hans-Peter Nilsson  <hp (a] axis.com>
    874  1.1.1.1.2.2  pgoyette 
    875  1.1.1.1.2.2  pgoyette 	* tc-arm.c (double_to_single, is_double_a_single): Append ULL to
    876  1.1.1.1.2.2  pgoyette 	0xFFFFFFFFFFFFF to avoid errors on 32-bit hosts.
    877  1.1.1.1.2.2  pgoyette 
    878  1.1.1.1.2.2  pgoyette 2015-08-04  Thomas Preud'homme  <thomas.preudhomme (a] arm.com>
    879  1.1.1.1.2.2  pgoyette 
    880  1.1.1.1.2.2  pgoyette 	* doc/c-aarch64.texi (.xword): Document directive.
    881  1.1.1.1.2.2  pgoyette 
    882  1.1.1.1.2.2  pgoyette 2015-08-03  Nick Clifton  <nickc (a] redhat.com>
    883  1.1.1.1.2.2  pgoyette 
    884  1.1.1.1.2.2  pgoyette 	* doc/as.texinfo (Overview): Add --hash-size to the synopsis and
    885  1.1.1.1.2.2  pgoyette 	fix typo in its entry: @kindex -> @item.
    886  1.1.1.1.2.2  pgoyette 
    887  1.1.1.1.2.2  pgoyette 2015-07-28  Robert Suchanek  <robert.suchanek (a] imgtec.com>
    888  1.1.1.1.2.2  pgoyette 
    889  1.1.1.1.2.2  pgoyette 	* config/tc-mips.c (mips_cpu_info_table): Add m5100 and m5101 entries.
    890  1.1.1.1.2.2  pgoyette 	* doc/c-mips.texi: Document m5100 and m5101 for -march=.
    891  1.1.1.1.2.2  pgoyette 
    892  1.1.1.1.2.2  pgoyette 2015-07-28  Robert Suchanek  <robert.suchanek (a] imgtec.com>
    893  1.1.1.1.2.2  pgoyette 
    894  1.1.1.1.2.2  pgoyette 	* config/tc-mips.c (mips_cpu_info_table): Add interaptiv entry.
    895  1.1.1.1.2.2  pgoyette 	* doc/c-mips.text: Document -march=interaptiv.
    896  1.1.1.1.2.2  pgoyette 
    897  1.1.1.1.2.2  pgoyette 2015-07-27  H.J. Lu  <hongjiu.lu (a] intel.com>
    898  1.1.1.1.2.2  pgoyette 
    899  1.1.1.1.2.2  pgoyette 	* configure: Regenerated.
    900  1.1.1.1.2.2  pgoyette 
    901  1.1.1.1.2.2  pgoyette 2015-07-24  Nick Clifton  <nickc (a] redhat.com>
    902  1.1.1.1.2.2  pgoyette 
    903  1.1.1.1.2.2  pgoyette 	* config/tc-rl78.c (rl78_abs_sym): New local variable.
    904  1.1.1.1.2.2  pgoyette 	(md_begin): Initialise the new symbol.
    905  1.1.1.1.2.2  pgoyette 	(OPIMM): Define the value to be relative to the new symbol and not
    906  1.1.1.1.2.2  pgoyette 	the absolute section symbol.
    907  1.1.1.1.2.2  pgoyette 
    908  1.1.1.1.2.2  pgoyette 2015-07-22  Alan Modra  <amodra (a] gmail.com>
    909  1.1.1.1.2.2  pgoyette 
    910  1.1.1.1.2.2  pgoyette 	PR gas/18687
    911  1.1.1.1.2.2  pgoyette 	* input-scrub.c (input_scrub_next_buffer): Rearrange and simplify
    912  1.1.1.1.2.2  pgoyette 	loop.  Don't drop lines at end of file lacking a newline, add a
    913  1.1.1.1.2.2  pgoyette 	newline instead.  Ensure partial_size is zero whenever
    914  1.1.1.1.2.2  pgoyette 	partial_where is NULL.  Adjust buffer size for extra char.
    915  1.1.1.1.2.2  pgoyette 	(input_scrub_push, input_scrub_begin): Adjust buffer size here too.
    916  1.1.1.1.2.2  pgoyette 
    917  1.1.1.1.2.2  pgoyette 2015-07-20  Matthew Wahab  <matthew.wahab (a] arm.com>
    918  1.1.1.1.2.2  pgoyette 
    919  1.1.1.1.2.2  pgoyette 	* NEWS: Mention corrected spelling of armv6kz.
    920  1.1.1.1.2.2  pgoyette 	* config/tc-arm.c (arm_cpus): Replace ARM_ARCH_V6ZK with
    921  1.1.1.1.2.2  pgoyette 	ARM_ARCH_V6KZ.
    922  1.1.1.1.2.2  pgoyette 	(arm_archs): Likewise. Also add "armv6kz" and "armv6kzt2".
    923  1.1.1.1.2.2  pgoyette 	* doc/c-arm.texi: Replace "armv6zk" with "armv6kz".
    924  1.1.1.1.2.2  pgoyette 
    925  1.1.1.1.2.2  pgoyette 2015-07-16  Jiong Wang  <jiong.wang (a] arm.com>
    926  1.1.1.1.2.2  pgoyette 
    927  1.1.1.1.2.2  pgoyette 	* config/tc-aarch64.c (reloc_table): New relocation modifiers.
    928  1.1.1.1.2.2  pgoyette 	(md_apply_fix): Support BFD_RELOC_AARCH64_TLSLD_ADR_PREL21.
    929  1.1.1.1.2.2  pgoyette 	(aarch64_force_relocation): Ditto.
    930  1.1.1.1.2.2  pgoyette 
    931  1.1.1.1.2.2  pgoyette 2015-07-16  Matthew Wahab  <matthew.wahab (a] arm.com>
    932  1.1.1.1.2.2  pgoyette 
    933  1.1.1.1.2.2  pgoyette 	* config/tc-arm.c (arm_fpus): Add crypto-neon-fp-armv8.1.
    934  1.1.1.1.2.2  pgoyette 	* doc/c-arm.texi (-mfpu=): Likewise.  Correct the entry for
    935  1.1.1.1.2.2  pgoyette 	neon-fp-armv8.1.
    936  1.1.1.1.2.2  pgoyette 
    937  1.1.1.1.2.2  pgoyette 2015-07-16  James Greenhalgh  <james.greenhalgh (a] arm.com>
    938  1.1.1.1.2.2  pgoyette 
    939  1.1.1.1.2.2  pgoyette 	* config/tc-arm.c (md_assemble): Rephrase the "selected processor does
    940  1.1.1.1.2.2  pgoyette 	not support ARM mode" error messages.
    941  1.1.1.1.2.2  pgoyette 
    942  1.1.1.1.2.2  pgoyette 2015-07-15  H.J. Lu  <hongjiu.lu (a] intel.com>
    943  1.1.1.1.2.2  pgoyette 
    944  1.1.1.1.2.2  pgoyette 	* config/tc-i386.c (flag_compress_debug): Replace
    945  1.1.1.1.2.2  pgoyette 	COMPRESS_DEBUG_GNU_ZLIB with COMPRESS_DEBUG_GABI_ZLIB.
    946  1.1.1.1.2.2  pgoyette 
    947  1.1.1.1.2.2  pgoyette 2015-07-14  H.J. Lu  <hongjiu.lu (a] intel.com>
    948  1.1.1.1.2.2  pgoyette 
    949  1.1.1.1.2.2  pgoyette 	* as.c (parse_args): Make --compress-debug-sections and
    950  1.1.1.1.2.2  pgoyette 	--compress-debug-sections=zlib the same as
    951  1.1.1.1.2.2  pgoyette 	--compress-debug-sections=zlib-gabi.
    952  1.1.1.1.2.2  pgoyette 	* doc/as.texinfo: Change --compress-debug-sections and
    953  1.1.1.1.2.2  pgoyette 	--compress-debug-sections=zlib to zlib-gabi.
    954  1.1.1.1.2.2  pgoyette 
    955  1.1.1.1.2.2  pgoyette 2015-07-09  Catherine Moore  <clm (a] codesourcery.com>
    956  1.1.1.1.2.2  pgoyette 
    957  1.1.1.1.2.2  pgoyette 	* config/tc-mips.c (check_fpabi):  Handle
    958  1.1.1.1.2.2  pgoyette 	VAL_GNU_MIPS_ABI_FP_NAN2008.
    959  1.1.1.1.2.2  pgoyette 
    960  1.1.1.1.2.2  pgoyette 2015-07-08  Ciro Santilli  <ciro.santilli (a] gmail.com>
    961  1.1.1.1.2.2  pgoyette 
    962  1.1.1.1.2.2  pgoyette 	* doc/as.texinfo: Clarify case requirements for pseudo ops.
    963  1.1.1.1.2.2  pgoyette 
    964  1.1.1.1.2.2  pgoyette 2015-07-08  Pitchumani Sivanupandi <pitchumani.s (a] atmel.com>
    965  1.1.1.1.2.2  pgoyette 
    966  1.1.1.1.2.2  pgoyette 	* config/tc-avr.c (tc_gen_reloc): Change 32 bit relocation to
    967  1.1.1.1.2.2  pgoyette 	32 bit PC relative and update offset if the fixup is pc-relative.
    968  1.1.1.1.2.2  pgoyette 	* config/tc-avr.h (DIFF_EXPR_OK): Define to enable PC relative diff
    969  1.1.1.1.2.2  pgoyette 	relocs.
    970  1.1.1.1.2.2  pgoyette 
    971  1.1.1.1.2.2  pgoyette 2015-07-03  Alan Modra  <amodra (a] gmail.com>
    972  1.1.1.1.2.2  pgoyette 
    973  1.1.1.1.2.2  pgoyette 	* config/tc-ppc.c (md_show_usage): Add -m821, -m850, -m860.
    974  1.1.1.1.2.2  pgoyette 	* doc/c-ppc.texi (PowerPC-Opts): Likewise.
    975  1.1.1.1.2.2  pgoyette 
    976  1.1.1.1.2.2  pgoyette 2015-07-01  Sandra Loosemore  <sandra (a] codesourcery.com>
    977  1.1.1.1.2.2  pgoyette 	    Cesar Philippidis  <cesar (a] codesourcery.com>
    978  1.1.1.1.2.2  pgoyette 
    979  1.1.1.1.2.2  pgoyette 	* config/tc-nios2.c (nios2_min_align): New.
    980  1.1.1.1.2.2  pgoyette 	(nop): Replace with....
    981  1.1.1.1.2.2  pgoyette 	(nop_r1, nop_r2, nop_r2_cdx, nop32, nop16): New.
    982  1.1.1.1.2.2  pgoyette 	(nios2_align): Handle alignment on 2-byte boundaries when CDX
    983  1.1.1.1.2.2  pgoyette 	instructions may be present.
    984  1.1.1.1.2.2  pgoyette 	(s_nios2_align): Adjust reference to nop.
    985  1.1.1.1.2.2  pgoyette 	(CDXBRANCH, IS_CDXBRANCH): New.
    986  1.1.1.1.2.2  pgoyette 	(CDX_UBRANCH_SUBTYPE, CDX_CBRANCH_SUBTYPE): New.
    987  1.1.1.1.2.2  pgoyette 	(nios2_relax_subtype_size): Handle 2-byte CDX branches.
    988  1.1.1.1.2.2  pgoyette 	(nios2_relax_frag): Likewise.
    989  1.1.1.1.2.2  pgoyette 	(md_convert_frag): Handle R2 encodings.
    990  1.1.1.1.2.2  pgoyette 	(nios2_check_overflow): Check that low-order bits are zero
    991  1.1.1.1.2.2  pgoyette 	before applying rightshift from howto.
    992  1.1.1.1.2.2  pgoyette 	(nios2_check_overflow): Correct negative overflow calculation.
    993  1.1.1.1.2.2  pgoyette 	(nios2_diagnose_overflow): Handle signed_immed12_overflow.  Issue
    994  1.1.1.1.2.2  pgoyette 	generic overflow messages for miscellaneous instruction formats.
    995  1.1.1.1.2.2  pgoyette 	(md_apply_fix): Recognize new R2 relocations.  For pc_relative
    996  1.1.1.1.2.2  pgoyette 	relocations, store fixup in *valP.
    997  1.1.1.1.2.2  pgoyette 	(nios2_reglist_mask, nios2_reglist_dir): New.
    998  1.1.1.1.2.2  pgoyette 	(nios2_parse_reglist): New.
    999  1.1.1.1.2.2  pgoyette 	(nios2_parse_base_register): New.
   1000  1.1.1.1.2.2  pgoyette 	(nios2_assemble_expression): Handle constant expressions designated
   1001  1.1.1.1.2.2  pgoyette 	by BFD_RELOC_NONE.
   1002  1.1.1.1.2.2  pgoyette 	(nios2_assemble_reg3): New.
   1003  1.1.1.1.2.2  pgoyette 	(nios2_assemble_arg_c): Handle R2 instruction formats.
   1004  1.1.1.1.2.2  pgoyette 	(nios2_assemble_arg_d): Likewise.
   1005  1.1.1.1.2.2  pgoyette 	(nios2_assemble_arg_s): Likewise.
   1006  1.1.1.1.2.2  pgoyette 	(nios2_assemble_arg_t): Likewise.
   1007  1.1.1.1.2.2  pgoyette 	(nios2_assemble_arg_D): New.
   1008  1.1.1.1.2.2  pgoyette 	(nios2_assemble_arg_S): New.
   1009  1.1.1.1.2.2  pgoyette 	(nios2_assemble_arg_T): New.
   1010  1.1.1.1.2.2  pgoyette 	(nios2_assemble_arg_i): Handle R2 instruction formats.
   1011  1.1.1.1.2.2  pgoyette 	(nios2_assemble_arg_I): New.
   1012  1.1.1.1.2.2  pgoyette 	(nios2_assemble_arg_u): Handle R2 instruction formats.
   1013  1.1.1.1.2.2  pgoyette 	(nios2_assemble_arg_U): New.
   1014  1.1.1.1.2.2  pgoyette 	(nios2_assemble_arg_V): New.
   1015  1.1.1.1.2.2  pgoyette 	(nios2_assemble_arg_W): New.
   1016  1.1.1.1.2.2  pgoyette 	(nios2_assemble_arg_X): New.
   1017  1.1.1.1.2.2  pgoyette 	(nios2_assemble_arg_Y): New.
   1018  1.1.1.1.2.2  pgoyette 	(nios2_assemble_arg_o): Handle R2 instruction formats.
   1019  1.1.1.1.2.2  pgoyette 	(nios2_assemble_arg_O): New.
   1020  1.1.1.1.2.2  pgoyette 	(nios2_assemble_arg_P): New.
   1021  1.1.1.1.2.2  pgoyette 	(nios2_assemble_arg_j): Handle R2 instruction formats.
   1022  1.1.1.1.2.2  pgoyette 	(nios2_assemble_arg_k): New.
   1023  1.1.1.1.2.2  pgoyette 	(nios2_assemble_arg_l): Handle R2 instruction formats.
   1024  1.1.1.1.2.2  pgoyette 	(nios2_assemble_arg_m): Likewise.
   1025  1.1.1.1.2.2  pgoyette 	(nios2_assemble_arg_M): New.
   1026  1.1.1.1.2.2  pgoyette 	(nios2_assemble_arg_N): New.
   1027  1.1.1.1.2.2  pgoyette 	(nios2_assemble_arg_e): New.
   1028  1.1.1.1.2.2  pgoyette 	(nios2_assemble_arg_f): New.
   1029  1.1.1.1.2.2  pgoyette 	(nios2_assemble_arg_g): New.
   1030  1.1.1.1.2.2  pgoyette 	(nios2_assemble_arg_h): New.
   1031  1.1.1.1.2.2  pgoyette 	(nios2_assemble_arg_R): New.
   1032  1.1.1.1.2.2  pgoyette 	(nios2_assemble_arg_B): New.
   1033  1.1.1.1.2.2  pgoyette 	(nios2_assemble_args): Handle new argument letters.
   1034  1.1.1.1.2.2  pgoyette 	(nios2_consume_arg): Likewise.
   1035  1.1.1.1.2.2  pgoyette 	(nios2_translate_pseudo_insn): Avoid dereferencing null pointer
   1036  1.1.1.1.2.2  pgoyette 	in error message.
   1037  1.1.1.1.2.2  pgoyette 	(nios2_ps_insn_info_structs): Add nop.n.
   1038  1.1.1.1.2.2  pgoyette 	(output_ubranch): Handle CDX branches.
   1039  1.1.1.1.2.2  pgoyette 	(output_cbranch): Likewise.
   1040  1.1.1.1.2.2  pgoyette 	(output_call): Handle R2 encodings.
   1041  1.1.1.1.2.2  pgoyette 	(output_movia): Likewise.
   1042  1.1.1.1.2.2  pgoyette 	(md_begin): Initialize nios2_min_align.
   1043  1.1.1.1.2.2  pgoyette 	(md_assemble): Align to nios2_min_align.  Adjust nios2_min_align
   1044  1.1.1.1.2.2  pgoyette 	if a 16-bit instruction is seen.
   1045  1.1.1.1.2.2  pgoyette 	(nios2_cons_align): Use appropriate nop pattern.
   1046  1.1.1.1.2.2  pgoyette 
   1047  1.1.1.1.2.2  pgoyette 2015-07-01  Sandra Loosemore  <sandra (a] codesourcery.com>
   1048  1.1.1.1.2.2  pgoyette 	    Cesar Philippidis  <cesar (a] codesourcery.com>
   1049  1.1.1.1.2.2  pgoyette 
   1050  1.1.1.1.2.2  pgoyette 	* config/tc-nios2.c: Adjust includes.
   1051  1.1.1.1.2.2  pgoyette 	(OPTION_MARCH): Define.
   1052  1.1.1.1.2.2  pgoyette 	(md_longopts): Add -march option.
   1053  1.1.1.1.2.2  pgoyette 	(nios2_architecture): New.
   1054  1.1.1.1.2.2  pgoyette 	(nios2_use_arch): New.
   1055  1.1.1.1.2.2  pgoyette 	(md_parse_option): Handle OPTION_MARCH.
   1056  1.1.1.1.2.2  pgoyette 	(md_show_usage): Document -march.
   1057  1.1.1.1.2.2  pgoyette 	(md_begin): Set arch in BFD.
   1058  1.1.1.1.2.2  pgoyette 	(nios2_elf_final_processing): New.
   1059  1.1.1.1.2.2  pgoyette 	* config/tc-nios2.h (elf_tc_final_processing): Define.
   1060  1.1.1.1.2.2  pgoyette 	(nios2_elf_final_processing): New.
   1061  1.1.1.1.2.2  pgoyette 	* doc/c-nios2.texi (-march): Add documentation.
   1062  1.1.1.1.2.2  pgoyette 
   1063  1.1.1.1.2.2  pgoyette 2015-06-30  Amit Pawar  <Amit.Pawar (a] amd.com>
   1064  1.1.1.1.2.2  pgoyette 
   1065  1.1.1.1.2.2  pgoyette 	* config/tc-i386.c (cpu_arch): Add .mwaitx.
   1066  1.1.1.1.2.2  pgoyette 	(process_immext): Check operands for monitorx/mwaitx instructions.
   1067  1.1.1.1.2.2  pgoyette 	* doc/c-i386.texi: Document mwaitx.
   1068  1.1.1.1.2.2  pgoyette 
   1069  1.1.1.1.2.2  pgoyette 2015-06-28  H.J. Lu  <hongjiu.lu (a] intel.com>
   1070  1.1.1.1.2.2  pgoyette 
   1071  1.1.1.1.2.2  pgoyette 	* as.c (parse_args): Replace COMPRESS_DEBUG_ZLIB with
   1072  1.1.1.1.2.2  pgoyette 	COMPRESS_DEBUG_GNU_ZLIB.
   1073  1.1.1.1.2.2  pgoyette 	* config/tc-i386.c (flag_compress_debug): Likewise.
   1074  1.1.1.1.2.2  pgoyette 
   1075  1.1.1.1.2.2  pgoyette 2015-06-24  H.J. Lu  <hongjiu.lu (a] intel.com>
   1076  1.1.1.1.2.2  pgoyette 
   1077  1.1.1.1.2.2  pgoyette 	* doc/as.texinfo (.cfi_lsda): Remove the extra @section.
   1078  1.1.1.1.2.2  pgoyette 
   1079  1.1.1.1.2.2  pgoyette 2015-06-19  Peter Bergner  <bergner (a] vnet.ibm.com>
   1080  1.1.1.1.2.2  pgoyette 
   1081  1.1.1.1.2.2  pgoyette 	* config/tc-ppc.c (md_assemble): Use ppc_optional_operand_value.
   1082  1.1.1.1.2.2  pgoyette 	Allow for optional operands without insert functions.
   1083  1.1.1.1.2.2  pgoyette 
   1084  1.1.1.1.2.2  pgoyette 2015-06-18  Nick Clifton  <nickc (a] redhat.com>
   1085  1.1.1.1.2.2  pgoyette 
   1086  1.1.1.1.2.2  pgoyette 	PR gas/18541
   1087  1.1.1.1.2.2  pgoyette 	* config/tc-arm.c (md_apply_fix): Add support for ADR in thumb
   1088  1.1.1.1.2.2  pgoyette 	mode against a nearby symbol.
   1089  1.1.1.1.2.2  pgoyette 
   1090  1.1.1.1.2.2  pgoyette 2015-06-18  Nick Clifton  <nickc (a] redhat.com>
   1091  1.1.1.1.2.2  pgoyette 
   1092  1.1.1.1.2.2  pgoyette 	PR gas/18481
   1093  1.1.1.1.2.2  pgoyette 	* config/tc-arm.c (tc_gen_reloc): Include BFD_RELOC_ARM_TLS_LE32
   1094  1.1.1.1.2.2  pgoyette 	in the same case as BFD_RELOC_ARM_TLS_IS32.
   1095  1.1.1.1.2.2  pgoyette 
   1096  1.1.1.1.2.2  pgoyette 2015-06-17  Nick Clifton  <nickc (a] redhat.com>
   1097  1.1.1.1.2.2  pgoyette 
   1098  1.1.1.1.2.2  pgoyette 	* config/tc-arm.c (is_double_a_single): Make conditional upon the
   1099  1.1.1.1.2.2  pgoyette 	availablity of a 64-bit type.  Use this type for the argument and
   1100  1.1.1.1.2.2  pgoyette 	mantissa.
   1101  1.1.1.1.2.2  pgoyette 	(double_to_single): Likewise.
   1102  1.1.1.1.2.2  pgoyette 	* config/tc-arm.c (move_or_literal_pool): Use a 64-bit type for
   1103  1.1.1.1.2.2  pgoyette 	the constant value, if available.  Generate a 64-bit value from a
   1104  1.1.1.1.2.2  pgoyette 	bignum if supported.  Only perform the second optimization for
   1105  1.1.1.1.2.2  pgoyette 	PR 18500 if the 64-bit type is available.
   1106  1.1.1.1.2.2  pgoyette 
   1107  1.1.1.1.2.2  pgoyette 2015-06-17  Alessandro Marzocchi  <alessandro.marzocchi (a] gmail.com>
   1108  1.1.1.1.2.2  pgoyette 
   1109  1.1.1.1.2.2  pgoyette 	PR gas/18500
   1110  1.1.1.1.2.2  pgoyette 	* config/tc-arm.c (is_double_a_single): New function.
   1111  1.1.1.1.2.2  pgoyette 	(double_to_single): New function.
   1112  1.1.1.1.2.2  pgoyette 	(move_or_literal_pool): Add support for converting VLDR to VMOV.
   1113  1.1.1.1.2.2  pgoyette 
   1114  1.1.1.1.2.2  pgoyette 	PR gas/18499
   1115  1.1.1.1.2.2  pgoyette 	* config/tc-arm.c (move_or_literal_pool): Add support for LDR Rx,=
   1116  1.1.1.1.2.2  pgoyette 	to MOV.w or MVN.w for Thumb2.
   1117  1.1.1.1.2.2  pgoyette 
   1118  1.1.1.1.2.2  pgoyette 2015-06-17  Nicolas Pitre <nico (a] linaro.org>
   1119  1.1.1.1.2.2  pgoyette 
   1120  1.1.1.1.2.2  pgoyette 	* as.c (show_usage): Document --sectname-subst.
   1121  1.1.1.1.2.2  pgoyette 	(parse_args): Add --sectname-subst.
   1122  1.1.1.1.2.2  pgoyette 	* as.h (flag_sectname_subst): New.
   1123  1.1.1.1.2.2  pgoyette 	* config/obj-elf.c (obj_elf_section_name): Add %S substitution.
   1124  1.1.1.1.2.2  pgoyette 	* doc/as.texinfo: Document it.
   1125  1.1.1.1.2.2  pgoyette 
   1126  1.1.1.1.2.2  pgoyette 2015-06-15  Renlin Li  <renlin.li (a] arm.com>
   1127  1.1.1.1.2.2  pgoyette 
   1128  1.1.1.1.2.2  pgoyette 	* config/tc-aarch64.c (reloc_table): New relocation modifier.
   1129  1.1.1.1.2.2  pgoyette 	(md_apply_fix): Support BFD_RELOC_AARCH64_LD64_GOTOFF_LO15.
   1130  1.1.1.1.2.2  pgoyette 	(aarch64_force_relocation): Ditto
   1131  1.1.1.1.2.2  pgoyette 
   1132  1.1.1.1.2.2  pgoyette 2015-06-13  Mark Wielaard  <mjw (a] redhat.com>
   1133  1.1.1.1.2.2  pgoyette 
   1134  1.1.1.1.2.2  pgoyette 	* dwarf2dbg.c (out_header): Document EXPR->X_add_number value,
   1135  1.1.1.1.2.2  pgoyette 	out_debug_aranges depends on it.
   1136  1.1.1.1.2.2  pgoyette 	(out_debug_aranges): Track size of header to properly pad header
   1137  1.1.1.1.2.2  pgoyette 	for address alignment.
   1138  1.1.1.1.2.2  pgoyette 
   1139  1.1.1.1.2.2  pgoyette 2015-06-11  John David Anglin  <danglin (a] gcc.gnu.org>
   1140  1.1.1.1.2.2  pgoyette 
   1141  1.1.1.1.2.2  pgoyette 	PR gas/18427
   1142  1.1.1.1.2.2  pgoyette 	* config/tc-hppa.c (last_label_symbol): Declare.
   1143  1.1.1.1.2.2  pgoyette 	(pa_get_label): Return last label in current space/segment or NULL.
   1144  1.1.1.1.2.2  pgoyette 	(pa_define_label): Record last label and add to root.
   1145  1.1.1.1.2.2  pgoyette 	(pa_undefine_label): Remove last label from root.
   1146  1.1.1.1.2.2  pgoyette 
   1147  1.1.1.1.2.2  pgoyette 2015-06-08  Nick Clifton  <nickc (a] redhat.com>
   1148  1.1.1.1.2.2  pgoyette 
   1149  1.1.1.1.2.2  pgoyette 	* config/tc-rx.c (rx_op): Correct handling of integer bignums.
   1150  1.1.1.1.2.2  pgoyette 
   1151  1.1.1.1.2.2  pgoyette 2015-06-04  Matthew Wahab  <matthew.wahab (a] arm.com>
   1152  1.1.1.1.2.2  pgoyette 
   1153  1.1.1.1.2.2  pgoyette 	* NEWS: Mention ARMv8.1 support in the Aarch64 port.
   1154  1.1.1.1.2.2  pgoyette 	* config/tc-aarch64.c (aarch64_arch_option_table): Add "armv8.1-a".
   1155  1.1.1.1.2.2  pgoyette 	* doc/c-aarch64.texi (-march): Add "armv8.1-a".
   1156  1.1.1.1.2.2  pgoyette 
   1157  1.1.1.1.2.2  pgoyette 2015-06-04  Renlin Li  <renlin.li (a] arm.com>
   1158  1.1.1.1.2.2  pgoyette 
   1159  1.1.1.1.2.2  pgoyette 	* config/tc-arm.c (arm_init_frag): Use frag's thumb_mode information
   1160  1.1.1.1.2.2  pgoyette 	when available.
   1161  1.1.1.1.2.2  pgoyette 
   1162  1.1.1.1.2.2  pgoyette 2015-06-04  Nick Clifton  <nickc (a] redhat.com>
   1163  1.1.1.1.2.2  pgoyette 
   1164  1.1.1.1.2.2  pgoyette 	* config/tc-h8300.c (md_section_align): Fix compile time warning
   1165  1.1.1.1.2.2  pgoyette 	about left shifting a negative value.
   1166  1.1.1.1.2.2  pgoyette 
   1167  1.1.1.1.2.2  pgoyette 2015-06-03  Matthew Wahab  <matthew.wahab (a] arm.com>
   1168  1.1.1.1.2.2  pgoyette 
   1169  1.1.1.1.2.2  pgoyette 	* config/tc-arm.c (arm_archs): Add "armv8.1-a".
   1170  1.1.1.1.2.2  pgoyette 	* doc/c-arm.texi (ARM Options, -march): Add "armv8.1-a".
   1171  1.1.1.1.2.2  pgoyette 	* NEWS: Mention ARMv8.1 support.
   1172  1.1.1.1.2.2  pgoyette 
   1173  1.1.1.1.2.2  pgoyette 2015-06-02  Matthew Wahab  <matthew.wahab (a] arm.com>
   1174  1.1.1.1.2.2  pgoyette 
   1175  1.1.1.1.2.2  pgoyette 	* config/tc-arm.c (arm_ext_pan): New.
   1176  1.1.1.1.2.2  pgoyette 	(do_setpan): New, encode an ARM SETPAN instruction.
   1177  1.1.1.1.2.2  pgoyette 	(do_t_setpan): New, encode a Thumb SETPAN instruction.
   1178  1.1.1.1.2.2  pgoyette 	(insns): Add "setpan".
   1179  1.1.1.1.2.2  pgoyette 	(arm_extensions): Add "pan".
   1180  1.1.1.1.2.2  pgoyette 	* doc/c-arm.texi (ARM Options): Add "pan" to list of -mcpu processor
   1181  1.1.1.1.2.2  pgoyette 	extensions.
   1182  1.1.1.1.2.2  pgoyette 
   1183  1.1.1.1.2.2  pgoyette 2015-06-02  Matthew Wahab  <matthew.wahab (a] arm.com>
   1184  1.1.1.1.2.2  pgoyette 
   1185  1.1.1.1.2.2  pgoyette 	* config/tc-aarch64.c (aarch64_features): Add "rdma".
   1186  1.1.1.1.2.2  pgoyette 	* doc/c-aarch64.texi (AArch64 Extensions): Add "rdma".
   1187  1.1.1.1.2.2  pgoyette 
   1188  1.1.1.1.2.2  pgoyette 2015-06-02  Matthew Wahab  <matthew.wahab (a] arm.com>
   1189  1.1.1.1.2.2  pgoyette 
   1190  1.1.1.1.2.2  pgoyette 	* config/tc-aarch64.c (aarch64_features): Add "lor".
   1191  1.1.1.1.2.2  pgoyette 	* doc/c-aarch64.c (Aarch64 Extensions): Add "lor" to list of
   1192  1.1.1.1.2.2  pgoyette 	architecture extensions.
   1193  1.1.1.1.2.2  pgoyette 
   1194  1.1.1.1.2.2  pgoyette 2015-06-01  Matthew Wahab  <matthew.wahab (a] arm.com>
   1195  1.1.1.1.2.2  pgoyette 
   1196  1.1.1.1.2.2  pgoyette 	* config/tc-aarch64.c (parse_sys_reg): New parameter.  Check target
   1197  1.1.1.1.2.2  pgoyette 	support.  Fix whitespace.
   1198  1.1.1.1.2.2  pgoyette 	(parse_operands): Update for parse_sys_reg changes.
   1199  1.1.1.1.2.2  pgoyette 	(aarch64_features): Add "pan".
   1200  1.1.1.1.2.2  pgoyette 	* doc/c-aarch64.texi (Aarch64 Extensions): Add "pan".
   1201  1.1.1.1.2.2  pgoyette 
   1202  1.1.1.1.2.2  pgoyette 2015-06-01  Jiong Wang  <jiong.wang (a] arm.com>
   1203  1.1.1.1.2.2  pgoyette 
   1204  1.1.1.1.2.2  pgoyette 	* config/tc-aarch64.c (reloc_table): New relocation modifiers.
   1205  1.1.1.1.2.2  pgoyette 	(md_apply_fix): Support BFD_RELOC_AARCH64_LD32_GOTPAGE_LO14.
   1206  1.1.1.1.2.2  pgoyette 	(aarch64_force_relocation): Ditto.
   1207  1.1.1.1.2.2  pgoyette 
   1208  1.1.1.1.2.2  pgoyette 2015-06-01  Jiong Wang  <jiong.wang (a] arm.com>
   1209  1.1.1.1.2.2  pgoyette 
   1210  1.1.1.1.2.2  pgoyette 	* config/tc-aarch64.c (reloc_table): New relocation modifiers.
   1211  1.1.1.1.2.2  pgoyette 	(md_apply_fix): Support BFD_RELOC_AARCH64_LD64_GOTPAGE_LO15.
   1212  1.1.1.1.2.2  pgoyette 	(aarch64_force_relocation): Ditto.
   1213  1.1.1.1.2.2  pgoyette 
   1214  1.1.1.1.2.2  pgoyette 2015-05-28  Catherine Moore  <clm (a] codesourcery.com>
   1215  1.1.1.1.2.2  pgoyette 	    Bernd Schmidt <bernds (a] codesourcery.com>
   1216  1.1.1.1.2.2  pgoyette 	    Paul Brook <paul (a] codesourcery.com>
   1217  1.1.1.1.2.2  pgoyette 
   1218  1.1.1.1.2.2  pgoyette 	* config/tc-alpha.c (all_cfi_sections): Declare.
   1219  1.1.1.1.2.2  pgoyette 	(s_alpha_ent): Initialize all_cfi_sections.
   1220  1.1.1.1.2.2  pgoyette 	(alpha_elf_md_end): Invoke cfi_set_sections.
   1221  1.1.1.1.2.2  pgoyette 	* config/tc-mips.c (md_apply_fix):  Handle BFD_RELOC_NONE.
   1222  1.1.1.1.2.2  pgoyette 	(s_ehword): Use BFD_RELOC_32_PCREL.
   1223  1.1.1.1.2.2  pgoyette 	(mips_fix_adjustable): Handle BFD_RELOC_32_PCREL.
   1224  1.1.1.1.2.2  pgoyette 	(mips_cfi_reloc_for_encoding): New function.
   1225  1.1.1.1.2.2  pgoyette 	* tc-mips.h (DWARF2_FDE_RELOC_SIZE): Redefine.
   1226  1.1.1.1.2.2  pgoyette 	(DWARF2_FDE_RELOC_ENCODING): Define.
   1227  1.1.1.1.2.2  pgoyette 	(tc_cfi_reloc_for_encoding): Define.
   1228  1.1.1.1.2.2  pgoyette 	(mips_cfi_reloc_for_encoding): Define.
   1229  1.1.1.1.2.2  pgoyette 	(tc_compact_eh_opcode_stop): Define.
   1230  1.1.1.1.2.2  pgoyette 	(tc_compact_eh_opcode_pad): Define.
   1231  1.1.1.1.2.2  pgoyette 	* doc/as.texinfo: Document Compact EH extensions.
   1232  1.1.1.1.2.2  pgoyette 	* doc/internals.texi: Likewise.
   1233  1.1.1.1.2.2  pgoyette 	* dw2gencfi.c (EH_FRAME_LINKONCE): Redefine.
   1234  1.1.1.1.2.2  pgoyette 	(tc_cfi_reloc_for_encoding): Provide default.
   1235  1.1.1.1.2.2  pgoyette 	(compact_eh): Declare.
   1236  1.1.1.1.2.2  pgoyette 	(emit_expr_encoded): New function.
   1237  1.1.1.1.2.2  pgoyette 	(get_debugseg_name): Add Compact EH support.
   1238  1.1.1.1.2.2  pgoyette 	(alloc_debugseg_item): Likewise.
   1239  1.1.1.1.2.2  pgoyette 	(cfi_set_sections): New function.
   1240  1.1.1.1.2.2  pgoyette 	(dot_cfi_fde_data): New function.
   1241  1.1.1.1.2.2  pgoyette 	(dot_cfi_personality_id): New function.
   1242  1.1.1.1.2.2  pgoyette 	(dot_cfi_inline_lsda): New function.
   1243  1.1.1.1.2.2  pgoyette 	(cfi_pseudo_table): Add cfi_fde_data, cfi_personality_id,
   1244  1.1.1.1.2.2  pgoyette 	and cfi_inline_lsda.
   1245  1.1.1.1.2.2  pgoyette 	(dot_cfi_personality): Add Compact EH support.
   1246  1.1.1.1.2.2  pgoyette 	(dot_cfi_lsda): Likewise.
   1247  1.1.1.1.2.2  pgoyette 	(dot_cfi_sections): Likewise.
   1248  1.1.1.1.2.2  pgoyette 	(dot_cfi_startproc): Likewise.
   1249  1.1.1.1.2.2  pgoyette 	(get_cfi_seg): Likewise.
   1250  1.1.1.1.2.2  pgoyette 	(output_compact_unwind_data): New function.
   1251  1.1.1.1.2.2  pgoyette 	(output_cfi_insn): Add Compact EH support.
   1252  1.1.1.1.2.2  pgoyette 	(output_cie): Likewise.
   1253  1.1.1.1.2.2  pgoyette 	(output_fde): Likewise.
   1254  1.1.1.1.2.2  pgoyette 	(cfi_finish): Likewise.
   1255  1.1.1.1.2.2  pgoyette 	(cfi_emit_eh_header): New function.
   1256  1.1.1.1.2.2  pgoyette 	(output_eh_header): New function.
   1257  1.1.1.1.2.2  pgoyette 	* dw2gencfi.h (cfi_set_sections): Declare.
   1258  1.1.1.1.2.2  pgoyette 	(SUPPORT_COMPACT_EH): Define.
   1259  1.1.1.1.2.2  pgoyette 	(MULTIPLE_FRAME_SECTIONS): Define.
   1260  1.1.1.1.2.2  pgoyette 	New enumeration to describe the Compact EH header format.
   1261  1.1.1.1.2.2  pgoyette 	(fde_entry): Add new fields personality_id, eh_header_type, eh_data_size,
   1262  1.1.1.1.2.2  pgoyette 	eh_data, eh_loc and sections.
   1263  1.1.1.1.2.2  pgoyette 	(CFI_EMIT_eh_frame, CFI_EMIT_debug_frame, CFI_EMIT_target,
   1264  1.1.1.1.2.2  pgoyette 	CFI_EMIT_eh_frame_compact): Define.
   1265  1.1.1.1.2.2  pgoyette 
   1266  1.1.1.1.2.2  pgoyette 2015-05-26  Max Filippov  <jcmvbkbc (a] gmail.com>
   1267  1.1.1.1.2.2  pgoyette 
   1268  1.1.1.1.2.2  pgoyette 	* config/tc-xtensa.c (xtensa_move_literals): Check that
   1269  1.1.1.1.2.2  pgoyette 	search_frag is non-NULL. Report error if literal frag is not
   1270  1.1.1.1.2.2  pgoyette 	found.
   1271  1.1.1.1.2.2  pgoyette 
   1272  1.1.1.1.2.2  pgoyette 2015-05-22  Nick Clifton  <nickc (a] redhat.com>
   1273  1.1.1.1.2.2  pgoyette 
   1274  1.1.1.1.2.2  pgoyette 	PR gas/18446
   1275  1.1.1.1.2.2  pgoyette 	* read.c (output_big_sleb128): Use U suffix to prevent compile
   1276  1.1.1.1.2.2  pgoyette 	time warning.
   1277  1.1.1.1.2.2  pgoyette 
   1278  1.1.1.1.2.2  pgoyette 2015-05-19  Jiong Wang  <jiong.wang (a] arm.com>
   1279  1.1.1.1.2.2  pgoyette 
   1280  1.1.1.1.2.2  pgoyette 	* config/tc-aarch64.c (process_movw_reloc_info): Sort relocation case
   1281  1.1.1.1.2.2  pgoyette 	labels alphabetically.
   1282  1.1.1.1.2.2  pgoyette 	(md_apply_fix): Ditto.
   1283  1.1.1.1.2.2  pgoyette 	(aarch64_force_relocation): Ditto.
   1284  1.1.1.1.2.2  pgoyette 
   1285  1.1.1.1.2.2  pgoyette 2015-05-15  H.J. Lu  <hongjiu.lu (a] intel.com>
   1286  1.1.1.1.2.2  pgoyette 
   1287  1.1.1.1.2.2  pgoyette 	PR binutis/18386
   1288  1.1.1.1.2.2  pgoyette 	* config/tc-i386.c (OPTION_MAMD64): New.
   1289  1.1.1.1.2.2  pgoyette 	(OPTION_MINTEL64): Likewise.
   1290  1.1.1.1.2.2  pgoyette 	(md_longopts): Add -mamd64 and -mintel64.
   1291  1.1.1.1.2.2  pgoyette 	(md_parse_option): Handle OPTION_MAMD64 and OPTION_MINTEL64.
   1292  1.1.1.1.2.2  pgoyette 	(md_show_usage): Add -mamd64 and -mintel64.
   1293  1.1.1.1.2.2  pgoyette 	* doc/c-i386.texi: Document -mamd64 and -mintel64.
   1294  1.1.1.1.2.2  pgoyette 
   1295  1.1.1.1.2.2  pgoyette 2015-05-15  H.J. Lu  <hongjiu.lu (a] intel.com>
   1296  1.1.1.1.2.2  pgoyette 
   1297  1.1.1.1.2.2  pgoyette 	* config/tc-i386.c (shared): New.
   1298  1.1.1.1.2.2  pgoyette 	(OPTION_MSHARED): Likewise.
   1299  1.1.1.1.2.2  pgoyette 	(elf_symbol_resolved_in_segment_p): Add relocation argument.
   1300  1.1.1.1.2.2  pgoyette 	Check PLT relocations and shared.
   1301  1.1.1.1.2.2  pgoyette 	(md_estimate_size_before_relax): Pass fragP->fr_var to
   1302  1.1.1.1.2.2  pgoyette 	elf_symbol_resolved_in_segment_p.
   1303  1.1.1.1.2.2  pgoyette 	(md_longopts): Add -mshared.
   1304  1.1.1.1.2.2  pgoyette 	(md_show_usage): Likewise.
   1305  1.1.1.1.2.2  pgoyette 	(md_parse_option): Handle OPTION_MSHARED.
   1306  1.1.1.1.2.2  pgoyette 	* doc/c-i386.texi: Document -mshared.
   1307  1.1.1.1.2.2  pgoyette 
   1308  1.1.1.1.2.2  pgoyette 2015-05-14  H.J. Lu  <hongjiu.lu (a] intel.com>
   1309  1.1.1.1.2.2  pgoyette 
   1310  1.1.1.1.2.2  pgoyette 	* write.c (compress_debug): Don't write the zlib header, which
   1311  1.1.1.1.2.2  pgoyette 	is handled by bfd_update_compression_header.
   1312  1.1.1.1.2.2  pgoyette 
   1313  1.1.1.1.2.2  pgoyette 2015-05-13  Max Filippov  <jcmvbkbc (a] gmail.com>
   1314  1.1.1.1.2.2  pgoyette 
   1315  1.1.1.1.2.2  pgoyette 	* config/tc-xtensa.c (xtensa_relax_frag): Allow trampoline to be
   1316  1.1.1.1.2.2  pgoyette 	closer than J_RANGE / 2 to jump frag.
   1317  1.1.1.1.2.2  pgoyette 
   1318  1.1.1.1.2.2  pgoyette 2015-05-11  H.J. Lu  <hongjiu.lu (a] intel.com>
   1319  1.1.1.1.2.2  pgoyette 
   1320  1.1.1.1.2.2  pgoyette 	* configure.tgt (arch): Set to iamcu for i386-*-elfiamcu target.
   1321  1.1.1.1.2.2  pgoyette 	* config/tc-i386.c (i386_mach): Support iamcu.
   1322  1.1.1.1.2.2  pgoyette 	(i386_target_format): Likewise.
   1323  1.1.1.1.2.2  pgoyette 
   1324  1.1.1.1.2.2  pgoyette 2015-05-11  H.J. Lu  <hongjiu.lu (a] intel.com>
   1325  1.1.1.1.2.2  pgoyette 
   1326  1.1.1.1.2.2  pgoyette 	* config/tc-i386.c (cpu_arch): Add iamcu.
   1327  1.1.1.1.2.2  pgoyette 	(i386_align_code): Handle PROCESSOR_IAMCU.
   1328  1.1.1.1.2.2  pgoyette 	(i386_arch): Likewise.
   1329  1.1.1.1.2.2  pgoyette 	(i386_mach): Likewise.
   1330  1.1.1.1.2.2  pgoyette 	(i386_target_format): Likewise.
   1331  1.1.1.1.2.2  pgoyette 	(valid_iamcu_cpu_flags): New function.
   1332  1.1.1.1.2.2  pgoyette 	(check_cpu_arch_compatible): Only allow Intel MCU instructions
   1333  1.1.1.1.2.2  pgoyette 	when targeting Intel MCU.
   1334  1.1.1.1.2.2  pgoyette 	(set_cpu_arch): Call valid_iamcu_cpu_flags to check if CPU flags
   1335  1.1.1.1.2.2  pgoyette 	are valid for Intel MCU.
   1336  1.1.1.1.2.2  pgoyette 	(md_parse_option): Likewise.
   1337  1.1.1.1.2.2  pgoyette 	* tc-i386.h (ELF_TARGET_IAMCU_FORMAT): New.
   1338  1.1.1.1.2.2  pgoyette 	(processor_type): Add PROCESSOR_IAMCU.
   1339  1.1.1.1.2.2  pgoyette 	* doc/c-i386.texi: Document iamcu.
   1340  1.1.1.1.2.2  pgoyette 
   1341  1.1.1.1.2.2  pgoyette 2015-05-08  Nick Clifton  <nickc (a] redhat.com>
   1342  1.1.1.1.2.2  pgoyette 
   1343  1.1.1.1.2.2  pgoyette 	PR gas/18347
   1344  1.1.1.1.2.2  pgoyette 	* config/tc-arm.h (TC_EQUAL_IN_INSN): Define.
   1345  1.1.1.1.2.2  pgoyette 	* config/tc-arm.c (arm_tc_equal_in_insn): New function.  Move
   1346  1.1.1.1.2.2  pgoyette 	the symbol name checking code to here from...
   1347  1.1.1.1.2.2  pgoyette 	(md_undefined_symbo): ... here.
   1348  1.1.1.1.2.2  pgoyette 
   1349  1.1.1.1.2.2  pgoyette 2015-05-07  H.J. Lu  <hongjiu.lu (a] intel.com>
   1350  1.1.1.1.2.2  pgoyette 
   1351  1.1.1.1.2.2  pgoyette 	* config/tc-i386.c (elf_symbol_resolved_in_segment_p): New.
   1352  1.1.1.1.2.2  pgoyette 	(md_estimate_size_before_relax): Use it.
   1353  1.1.1.1.2.2  pgoyette 
   1354  1.1.1.1.2.2  pgoyette 2015-05-06  Jose E. Marchesi  <jose.marchesi (a] oracle.com>
   1355  1.1.1.1.2.2  pgoyette 
   1356  1.1.1.1.2.2  pgoyette 	* config/tc-sparc.c: Typo in comment fixed.
   1357  1.1.1.1.2.2  pgoyette 
   1358  1.1.1.1.2.2  pgoyette 2015-05-06  Jose E. Marchesi  <jose.marchesi (a] oracle.com>
   1359  1.1.1.1.2.2  pgoyette 
   1360  1.1.1.1.2.2  pgoyette 	* config/tc-sparc.c (sparc_ip): Support the %ncc "natural"
   1361  1.1.1.1.2.2  pgoyette 	condition codes
   1362  1.1.1.1.2.2  pgoyette 	* doc/c-sparc.texi (Sparc-Regs): Document %ncc.
   1363  1.1.1.1.2.2  pgoyette 
   1364  1.1.1.1.2.2  pgoyette 2015-05-06  Nick Clifton  <nickc (a] redhat.com>
   1365  1.1.1.1.2.2  pgoyette 
   1366  1.1.1.1.2.2  pgoyette 	* doc/as.texinfo (Dollar Local Labels): Note that these are only
   1367  1.1.1.1.2.2  pgoyette 	supported on some targets.
   1368  1.1.1.1.2.2  pgoyette 
   1369  1.1.1.1.2.2  pgoyette 2015-05-06  Renlin Li  <renlin.li (a] arm.com>
   1370  1.1.1.1.2.2  pgoyette 
   1371  1.1.1.1.2.2  pgoyette 	* config/tc-aarch64.c (mapping_state): Recording alignment before exit.
   1372  1.1.1.1.2.2  pgoyette 
   1373  1.1.1.1.2.2  pgoyette 2015-05-05  Renlin Li  <renlin.li (a] arm.com>
   1374  1.1.1.1.2.2  pgoyette 
   1375  1.1.1.1.2.2  pgoyette 	* config/tc-aarch64.c (aarch64_init_frag): Always generate mapping
   1376  1.1.1.1.2.2  pgoyette 	symbols.
   1377  1.1.1.1.2.2  pgoyette 
   1378  1.1.1.1.2.2  pgoyette 2015-05-05  Nick Clifton  <nickc (a] redhat.com>
   1379  1.1.1.1.2.2  pgoyette 
   1380  1.1.1.1.2.2  pgoyette 	* config/tc-msp430.c (MAX_OP_LEN): Increase to 4096.
   1381  1.1.1.1.2.2  pgoyette 	(msp430_make_init_symbols): New function.
   1382  1.1.1.1.2.2  pgoyette 	(msp430_section): Call it.
   1383  1.1.1.1.2.2  pgoyette 	(msp430_frob_section): Likewise.
   1384  1.1.1.1.2.2  pgoyette 
   1385  1.1.1.1.2.2  pgoyette 2015-05-02  Max Filippov  <jcmvbkbc (a] gmail.com>
   1386  1.1.1.1.2.2  pgoyette 
   1387  1.1.1.1.2.2  pgoyette 	* config/tc-xtensa.c (cached_fixupS, fixup_cacheS): New typedefs.
   1388  1.1.1.1.2.2  pgoyette 	(struct cached_fixup, struct fixup_cache): New structures.
   1389  1.1.1.1.2.2  pgoyette 	(fixup_order, xtensa_make_cached_fixup),
   1390  1.1.1.1.2.2  pgoyette 	(xtensa_realloc_fixup_cache, xtensa_cache_relaxable_fixups),
   1391  1.1.1.1.2.2  pgoyette 	(xtensa_find_first_cached_fixup, xtensa_delete_cached_fixup),
   1392  1.1.1.1.2.2  pgoyette 	(xtensa_add_cached_fixup): New functions.
   1393  1.1.1.1.2.2  pgoyette 	(xtensa_relax_frag): Cache fixups pointing at potentially
   1394  1.1.1.1.2.2  pgoyette 	oversized jumps at the beginning of every relaxation pass. Only
   1395  1.1.1.1.2.2  pgoyette 	check subset of this cache in the reach of single jump from the
   1396  1.1.1.1.2.2  pgoyette 	trampoline frag currently being relaxed.
   1397  1.1.1.1.2.2  pgoyette 
   1398  1.1.1.1.2.2  pgoyette 2015-05-01  Nick Clifton  <nickc (a] redhat.com>
   1399  1.1.1.1.2.2  pgoyette 
   1400  1.1.1.1.2.2  pgoyette 	* config/rl78-parse.y (MULU): Remove ISA_G14.
   1401  1.1.1.1.2.2  pgoyette 	(MULH, DIVHU, DIVWU, MACHI, MACH): Update error strings.
   1402  1.1.1.1.2.2  pgoyette 
   1403  1.1.1.1.2.2  pgoyette 2015-05-01  H.J. Lu  <hongjiu.lu (a] intel.com>
   1404  1.1.1.1.2.2  pgoyette 
   1405  1.1.1.1.2.2  pgoyette 	* config/tc-i386.c (i386_elf_emit_arch_note): Removed.
   1406  1.1.1.1.2.2  pgoyette 	* config/tc-i386.h (md_end): Likewise.
   1407  1.1.1.1.2.2  pgoyette 	(i386_elf_emit_arch_note): Likewise.
   1408  1.1.1.1.2.2  pgoyette 
   1409  1.1.1.1.2.2  pgoyette 2015-05-01  H.J. Lu  <hongjiu.lu (a] intel.com>
   1410  1.1.1.1.2.2  pgoyette 
   1411  1.1.1.1.2.2  pgoyette 	* configure.tgt: Support i386-*-elf*.
   1412  1.1.1.1.2.2  pgoyette 
   1413  1.1.1.1.2.2  pgoyette 2015-04-30  DJ Delorie  <dj (a] redhat.com>
   1414  1.1.1.1.2.2  pgoyette 
   1415  1.1.1.1.2.2  pgoyette 	* config/rl78-defs.h (rl78_isa_g10): New.
   1416  1.1.1.1.2.2  pgoyette 	(rl78_isa_g13): New.
   1417  1.1.1.1.2.2  pgoyette 	(rl78_isa_g14): New.
   1418  1.1.1.1.2.2  pgoyette 	* config/rl78-parse.y (ISA_G10): New.
   1419  1.1.1.1.2.2  pgoyette 	(ISA_G13): New.
   1420  1.1.1.1.2.2  pgoyette 	(ISA_G14): New.
   1421  1.1.1.1.2.2  pgoyette 	(MULHU, MULH, MULU, DIVHU, DIVWU, MACHU, MACH): Use them.
   1422  1.1.1.1.2.2  pgoyette 	* config/tc-rl78.c (rl78_isa_g10): New.
   1423  1.1.1.1.2.2  pgoyette 	(rl78_isa_g13): New.
   1424  1.1.1.1.2.2  pgoyette 	(rl78_isa_g14): New.
   1425  1.1.1.1.2.2  pgoyette 
   1426  1.1.1.1.2.2  pgoyette 2015-04-30  H.J. Lu  <hongjiu.lu (a] intel.com>
   1427  1.1.1.1.2.2  pgoyette 
   1428  1.1.1.1.2.2  pgoyette 	* config/tc-i386.c (i386_target_format): Use "else if" on
   1429  1.1.1.1.2.2  pgoyette 	cpu_arch_isa.
   1430  1.1.1.1.2.2  pgoyette 
   1431  1.1.1.1.2.2  pgoyette 2015-04-30  Nick Clifton  <nickc (a] redhat.com>
   1432  1.1.1.1.2.2  pgoyette 
   1433  1.1.1.1.2.2  pgoyette 	PR gas/18347
   1434  1.1.1.1.2.2  pgoyette 	* config/tc-arm.c (md_undefined_symbol): Issue a warning message
   1435  1.1.1.1.2.2  pgoyette 	(if enabled) when the user creates a symbol with the same name as
   1436  1.1.1.1.2.2  pgoyette 	an ARM instruction.
   1437  1.1.1.1.2.2  pgoyette 	(flag_warn_syms): New static variable.
   1438  1.1.1.1.2.2  pgoyette 	(arm_opts): Add mwarn-syms and mno-warn-syms.
   1439  1.1.1.1.2.2  pgoyette 	* doc/c-arm.texi (ARM Options): Document the -m[no-]warn-syms
   1440  1.1.1.1.2.2  pgoyette 	options.
   1441  1.1.1.1.2.2  pgoyette 
   1442  1.1.1.1.2.2  pgoyette 	PR gas/18353
   1443  1.1.1.1.2.2  pgoyette 	* doc/as.texinfo (Zero): Add documentation of the .zero pseudo-op.
   1444  1.1.1.1.2.2  pgoyette 
   1445  1.1.1.1.2.2  pgoyette 2015-04-29  Nick Clifton  <nickc (a] redhat.com>
   1446  1.1.1.1.2.2  pgoyette 
   1447  1.1.1.1.2.2  pgoyette 	PR 18256
   1448  1.1.1.1.2.2  pgoyette 	* config/tc-arm.c (encode_arm_cp_address): Issue an error message
   1449  1.1.1.1.2.2  pgoyette 	if the operand is neither a register nor a vector.
   1450  1.1.1.1.2.2  pgoyette 
   1451  1.1.1.1.2.2  pgoyette 2015-04-29  Nick Clifton  <nickc (a] redhat.com>
   1452  1.1.1.1.2.2  pgoyette 
   1453  1.1.1.1.2.2  pgoyette 	* doc/as.texinfo (Set): Note that a symbol cannot be set multiple
   1454  1.1.1.1.2.2  pgoyette 	times if the expression is not constant and the target uses linker
   1455  1.1.1.1.2.2  pgoyette 	relaxation.
   1456  1.1.1.1.2.2  pgoyette 
   1457  1.1.1.1.2.2  pgoyette 2015-04-28  Renlin Li  <renlin.li (a] arm.com>
   1458  1.1.1.1.2.2  pgoyette 
   1459  1.1.1.1.2.2  pgoyette 	* config/tc-arm.c (arm_init_frag): Always emit mapping symbols.
   1460  1.1.1.1.2.2  pgoyette 
   1461  1.1.1.1.2.2  pgoyette 2015-04-28  Nick Clifton  <nickc (a] redhat.com>
   1462  1.1.1.1.2.2  pgoyette 
   1463  1.1.1.1.2.2  pgoyette 	PR 18313
   1464  1.1.1.1.2.2  pgoyette 	* cond.c (s_if): Stop compile time warning about stopc being used
   1465  1.1.1.1.2.2  pgoyette 	before it is set.
   1466  1.1.1.1.2.2  pgoyette 	(s_ifc): Likewise.
   1467  1.1.1.1.2.2  pgoyette 
   1468  1.1.1.1.2.2  pgoyette 2015-04-27  Renlin Li  <renlin.li (a] arm.com>
   1469  1.1.1.1.2.2  pgoyette 
   1470  1.1.1.1.2.2  pgoyette 	* config/tc-aarch64.c (s_aarch64_inst): Don't align code for non-text
   1471  1.1.1.1.2.2  pgoyette 	section.
   1472  1.1.1.1.2.2  pgoyette 	(md_assemble): Likewise, move the align code outside the loop.
   1473  1.1.1.1.2.2  pgoyette 
   1474  1.1.1.1.2.2  pgoyette 2015-04-24  Jim Wilson  <jim.wilson (a] linaro.org>
   1475  1.1.1.1.2.2  pgoyette 
   1476  1.1.1.1.2.2  pgoyette 	* config/tc-aarch64.c (aarch64_cpus): Add CRC and CRYPTO features
   1477  1.1.1.1.2.2  pgoyette 	for thunderx.
   1478  1.1.1.1.2.2  pgoyette 
   1479  1.1.1.1.2.2  pgoyette 2015-04-24  Richard Earnshaw  <rearnsha (a] arm.com>
   1480  1.1.1.1.2.2  pgoyette 
   1481  1.1.1.1.2.2  pgoyette 	* config/tc-arm.h (arm_min): New function.
   1482  1.1.1.1.2.2  pgoyette 	(SUB_SEGMENT_ALIGN): Define.
   1483  1.1.1.1.2.2  pgoyette 
   1484  1.1.1.1.2.2  pgoyette 2015-04-23  Matthew Fortune  <matthew.fortune (a] imgtec.com>
   1485  1.1.1.1.2.2  pgoyette 
   1486  1.1.1.1.2.2  pgoyette 	* config/tc-mips.c (macro): State the recommended way of creating
   1487  1.1.1.1.2.2  pgoyette 	32-bit or 64-bit addresses.
   1488  1.1.1.1.2.2  pgoyette 
   1489  1.1.1.1.2.2  pgoyette 2015-04-23  Jan Beulich  <jbeulich (a] suse.com>
   1490  1.1.1.1.2.2  pgoyette 
   1491  1.1.1.1.2.2  pgoyette 	* config/tc-i386.c (match_mem_size): Also allow no size
   1492  1.1.1.1.2.2  pgoyette 	specification when broadcasting.
   1493  1.1.1.1.2.2  pgoyette 
   1494  1.1.1.1.2.2  pgoyette 2015-04-20  H.J. Lu  <hongjiu.lu (a] intel.com>
   1495  1.1.1.1.2.2  pgoyette 
   1496  1.1.1.1.2.2  pgoyette 	* doc/as.texinfo (Bundle directives): Shorten menu entry and
   1497  1.1.1.1.2.2  pgoyette 	use @subsection.
   1498  1.1.1.1.2.2  pgoyette 	(CFI directives): Use @subsection.
   1499  1.1.1.1.2.2  pgoyette 	(SH-Dependent, SH64-Dependent): Moved after SCORE-Dependent.
   1500  1.1.1.1.2.2  pgoyette 	* doc/c-i386.texi (i386-Mnemonics): Use @subsection.
   1501  1.1.1.1.2.2  pgoyette 
   1502  1.1.1.1.2.2  pgoyette 2015-04-17  Senthil Kumar Selvaraj  <senthil_kumar.selvaraj (a] atmel.com>
   1503  1.1.1.1.2.2  pgoyette 
   1504  1.1.1.1.2.2  pgoyette 	* config/tc-avr.c (create_record_for_frag): Rename link to
   1505  1.1.1.1.2.2  pgoyette 	prop_rec_link.
   1506  1.1.1.1.2.2  pgoyette 
   1507  1.1.1.1.2.2  pgoyette 2015-04-15  H.J. Lu  <hongjiu.lu (a] intel.com>
   1508  1.1.1.1.2.2  pgoyette 
   1509  1.1.1.1.2.2  pgoyette 	* NEWS: Mention
   1510  1.1.1.1.2.2  pgoyette 	--compress-debug-sections=[none|zlib|zlib-gnu|zlib-gabi].
   1511  1.1.1.1.2.2  pgoyette 
   1512  1.1.1.1.2.2  pgoyette 2015-04-14  H.J. Lu  <hongjiu.lu (a] intel.com>
   1513  1.1.1.1.2.2  pgoyette 
   1514  1.1.1.1.2.2  pgoyette 	* as.h (compressed_debug_section_type): Removed.
   1515  1.1.1.1.2.2  pgoyette 
   1516  1.1.1.1.2.2  pgoyette 2015-04-14  Nick Clifton  <nickc (a] redhat.com>
   1517  1.1.1.1.2.2  pgoyette 
   1518  1.1.1.1.2.2  pgoyette 	* config/tc-rl78.h (TC_LINKRELAX_FIXUP): Define.
   1519  1.1.1.1.2.2  pgoyette 	(TC_FORCE_RELOCATION_SUB_SAME): Define.
   1520  1.1.1.1.2.2  pgoyette 	(DWARF2_USE_FIXED_ADVANCE_PC): Define.
   1521  1.1.1.1.2.2  pgoyette 
   1522  1.1.1.1.2.2  pgoyette 2015-04-10  Nick Clifton  <nickc (a] redhat.com>
   1523  1.1.1.1.2.2  pgoyette 
   1524  1.1.1.1.2.2  pgoyette 	PR binutils/18198
   1525  1.1.1.1.2.2  pgoyette 	* doc/c-arm.texi (ARM Options): Add a note about the interaction of
   1526  1.1.1.1.2.2  pgoyette 	the -EB option with the linker's --be8 option.
   1527  1.1.1.1.2.2  pgoyette 
   1528  1.1.1.1.2.2  pgoyette 2015-04-09  Hans-Peter Nilsson  <hp (a] axis.com>
   1529  1.1.1.1.2.2  pgoyette 
   1530  1.1.1.1.2.2  pgoyette 	* doc/c-rx.texi: Fix markup typos in last change.
   1531  1.1.1.1.2.2  pgoyette 
   1532  1.1.1.1.2.2  pgoyette 2015-04-09  Nick Clifton  <nickc (a] redhat.com>
   1533  1.1.1.1.2.2  pgoyette 
   1534  1.1.1.1.2.2  pgoyette 	* config/tc-rx.c (enum options): Add OPTION_DISALLOW_STRING_INSNS.
   1535  1.1.1.1.2.2  pgoyette 	(md_longopts): Add -mno-allow-string-insns.
   1536  1.1.1.1.2.2  pgoyette 	(md_parse_option): Handle -mno-allow-string-insns.
   1537  1.1.1.1.2.2  pgoyette 	(md_show_usage): Mention -mno-allow-string-insns.
   1538  1.1.1.1.2.2  pgoyette 	(rx_note_string_insn_use): New function.  Produces an error
   1539  1.1.1.1.2.2  pgoyette 	message if a string insn is used when it is not allowed.
   1540  1.1.1.1.2.2  pgoyette 	* config/rx-parse.y (SCMPU): Call rx_note_string_insn_use.
   1541  1.1.1.1.2.2  pgoyette 	(SMOVU, SMOVB, SMOVF, SUNTIL, SWHILE, RMPA): Likewise.
   1542  1.1.1.1.2.2  pgoyette 	* config/rx-defs.h (rx_note_string_insn_use): Prototype.
   1543  1.1.1.1.2.2  pgoyette 	* doc/c-rx.texi: Document -mno-allow-string-insns.
   1544  1.1.1.1.2.2  pgoyette 
   1545  1.1.1.1.2.2  pgoyette 2015-04-08  H.J. Lu  <hongjiu.lu (a] intel.com>
   1546  1.1.1.1.2.2  pgoyette 
   1547  1.1.1.1.2.2  pgoyette 	* as.c (show_usage): Update --compress-debug-sections.
   1548  1.1.1.1.2.2  pgoyette 	(std_longopts): Use optional_argument on compress-debug-sections.
   1549  1.1.1.1.2.2  pgoyette 	(parse_args): Handle
   1550  1.1.1.1.2.2  pgoyette 	--compress-debug-sections={none|zlib|zlib-gnu|zlib-gabi}.
   1551  1.1.1.1.2.2  pgoyette 	* as.h (compressed_debug_section_type): New.
   1552  1.1.1.1.2.2  pgoyette 	(flag_compress_debug): Change type to compressed_debug_section_type.
   1553  1.1.1.1.2.2  pgoyette 	--compress-debug-sections={none|zlib|zlib-gnu|zlib-gabi}.
   1554  1.1.1.1.2.2  pgoyette 	* write.c (compress_debug): Set BFD_COMPRESS_GABI for
   1555  1.1.1.1.2.2  pgoyette 	--compress-debug-sections=zlib-gabi.  Call
   1556  1.1.1.1.2.2  pgoyette 	bfd_get_compression_header_size to get compression header size.
   1557  1.1.1.1.2.2  pgoyette 	Don't rename section name for --compress-debug-sections=zlib-gabi.
   1558  1.1.1.1.2.2  pgoyette 	* config/tc-i386.c (compressed_debug_section_type): Set to
   1559  1.1.1.1.2.2  pgoyette 	COMPRESS_DEBUG_ZLIB.
   1560  1.1.1.1.2.2  pgoyette 	* doc/as.texinfo: Document
   1561  1.1.1.1.2.2  pgoyette 	--compress-debug-sections={none|zlib|zlib-gnu|zlib-gabi}.
   1562  1.1.1.1.2.2  pgoyette 
   1563  1.1.1.1.2.2  pgoyette 2015-04-07  Renlin Li  <renlin.li (a] arm.com>
   1564  1.1.1.1.2.2  pgoyette 
   1565  1.1.1.1.2.2  pgoyette 	* config/tc-aarch64.c (mapping_state): Use subseg_text_p.
   1566  1.1.1.1.2.2  pgoyette 	(s_aarch64_inst): Likewise.
   1567  1.1.1.1.2.2  pgoyette 	(md_assemble): Likewise.
   1568  1.1.1.1.2.2  pgoyette 
   1569  1.1.1.1.2.2  pgoyette 2015-04-06  H.J. Lu  <hongjiu.lu (a] intel.com>
   1570  1.1.1.1.2.2  pgoyette 
   1571  1.1.1.1.2.2  pgoyette 	* write.c (compress_debug): Use bfd_putb64 to write uncompressed
   1572  1.1.1.1.2.2  pgoyette 	section size.
   1573  1.1.1.1.2.2  pgoyette 
   1574  1.1.1.1.2.2  pgoyette 2015-04-05  H.J. Lu  <hongjiu.lu (a] intel.com>
   1575  1.1.1.1.2.2  pgoyette 
   1576  1.1.1.1.2.2  pgoyette 	* write.c (compress_debug): Don't write the zlib header if
   1577  1.1.1.1.2.2  pgoyette 	compressed section size is the same as before compression.
   1578  1.1.1.1.2.2  pgoyette 
   1579  1.1.1.1.2.2  pgoyette 2015-04-02  Nick Clifton  <nickc (a] redhat.com>
   1580  1.1.1.1.2.2  pgoyette 
   1581  1.1.1.1.2.2  pgoyette 	PR gas/18189
   1582  1.1.1.1.2.2  pgoyette 	* config/tc-microblaze.c (parse_imm): Use offsetT as the type for
   1583  1.1.1.1.2.2  pgoyette 	min and max parameters.  Sign extend values before testing.
   1584  1.1.1.1.2.2  pgoyette 
   1585  1.1.1.1.2.2  pgoyette 2015-04-02  Renlin Li  <renlin.li (a] arm.com>
   1586  1.1.1.1.2.2  pgoyette 
   1587  1.1.1.1.2.2  pgoyette 	* config/tc-aarch64.c (mapping_state): Emit MAP_DATA within text section in order.
   1588  1.1.1.1.2.2  pgoyette 	(mapping_state_2): Don't emit MAP_DATA here.
   1589  1.1.1.1.2.2  pgoyette 	(s_aarch64_inst): Align frag during state transition.
   1590  1.1.1.1.2.2  pgoyette 	(md_assemble): Likewise.
   1591  1.1.1.1.2.2  pgoyette 
   1592  1.1.1.1.2.2  pgoyette 2015-04-02  Ed Maste  <emaste (a] freebsd.org>
   1593  1.1.1.1.2.2  pgoyette 
   1594  1.1.1.1.2.2  pgoyette 	* config/tc-aarch64.c (set_error_kind): Delete.
   1595  1.1.1.1.2.2  pgoyette 	(set_error_message): Delete.
   1596  1.1.1.1.2.2  pgoyette 
   1597  1.1.1.1.2.2  pgoyette 2015-04-02  H.J. Lu  <hongjiu.lu (a] intel.com>
   1598  1.1.1.1.2.2  pgoyette 
   1599  1.1.1.1.2.2  pgoyette 	* configure: Regenerated.
   1600  1.1.1.1.2.2  pgoyette 
   1601  1.1.1.1.2.2  pgoyette 2015-04-01  Evandro Menezes  <e.menezes (a] samsung.com>
   1602  1.1.1.1.2.2  pgoyette 
   1603  1.1.1.1.2.2  pgoyette 	* config/tc-aarch64.c: Add support for Samsung Exynos M1.
   1604  1.1.1.1.2.2  pgoyette 	* doc/c-aarch64.texi (-mcpu=): Add "exynos-m1".
   1605  1.1.1.1.2.2  pgoyette 
   1606  1.1.1.1.2.2  pgoyette 2015-04-01  Evandro Menezes  <e.menezes (a] samsung.com>
   1607  1.1.1.1.2.2  pgoyette 
   1608  1.1.1.1.2.2  pgoyette 	* config/tc-arm.c: Add support for Samsung Exynos M1.
   1609  1.1.1.1.2.2  pgoyette 	* doc/c-arm.texi (-mcpu=): Add "exynos-m1".
   1610  1.1.1.1.2.2  pgoyette 
   1611  1.1.1.1.2.2  pgoyette 2015-04-01  H.J. Lu  <hongjiu.lu (a] intel.com>
   1612  1.1.1.1.2.2  pgoyette 
   1613  1.1.1.1.2.2  pgoyette 	* configure: Regenerated.
   1614  1.1.1.1.2.2  pgoyette 
   1615  1.1.1.1.2.2  pgoyette 2015-03-31  Ed Schouten  <ed (a] nuxi.nl>
   1616  1.1.1.1.2.2  pgoyette 
   1617  1.1.1.1.2.2  pgoyette 	* configure.tgt (fmt): Set to elf for *-*-cloudabi*.
   1618  1.1.1.1.2.2  pgoyette 
   1619  1.1.1.1.2.2  pgoyette 2015-03-31  H.J. Lu  <hongjiu.lu (a] intel.com>
   1620  1.1.1.1.2.2  pgoyette 
   1621  1.1.1.1.2.2  pgoyette 	* configure.ac: Revert the AM_ZLIB change.
   1622  1.1.1.1.2.2  pgoyette 	* Makefile.in: Regenerated.
   1623  1.1.1.1.2.2  pgoyette 	* aclocal.m4: Likewise.
   1624  1.1.1.1.2.2  pgoyette 	* configure: Likewise.
   1625  1.1.1.1.2.2  pgoyette 
   1626  1.1.1.1.2.2  pgoyette 2015-03-31  H.J. Lu  <hongjiu.lu (a] intel.com>
   1627  1.1.1.1.2.2  pgoyette 
   1628  1.1.1.1.2.2  pgoyette 	* Makefile.am (ZLIBINC): New.
   1629  1.1.1.1.2.2  pgoyette 	(AM_CFLAGS): Add $(ZLIBINC).
   1630  1.1.1.1.2.2  pgoyette 	* as.c: (show_usage): Don't check HAVE_ZLIB_H.
   1631  1.1.1.1.2.2  pgoyette 	(parse_args): Likewise.
   1632  1.1.1.1.2.2  pgoyette 	* compress-debug.c: Don't check HAVE_ZLIB_H to include <zlib.h>.
   1633  1.1.1.1.2.2  pgoyette 	(compress_init): Don't check HAVE_ZLIB_H.
   1634  1.1.1.1.2.2  pgoyette 	(compress_data): Likewise.
   1635  1.1.1.1.2.2  pgoyette 	(compress_finish): Likewise.
   1636  1.1.1.1.2.2  pgoyette 	* configure.ac (AM_ZLIB): Removed.
   1637  1.1.1.1.2.2  pgoyette 	(zlibinc): New.  AC_SUBST.
   1638  1.1.1.1.2.2  pgoyette 	Add --with-system-zlib.
   1639  1.1.1.1.2.2  pgoyette 	* Makefile.in: Regenerated.
   1640  1.1.1.1.2.2  pgoyette 	* config.in: Likewise.
   1641  1.1.1.1.2.2  pgoyette 	* configure: Likewise.
   1642  1.1.1.1.2.2  pgoyette 	* doc/Makefile.in: Likewise.
   1643  1.1.1.1.2.2  pgoyette 
   1644  1.1.1.1.2.2  pgoyette 2015-03-27  H.J. Lu  <hongjiu.lu (a] intel.com>
   1645  1.1.1.1.2.2  pgoyette 
   1646  1.1.1.1.2.2  pgoyette 	* config/tc-i386.c (cpu_flags_set): Removed.
   1647  1.1.1.1.2.2  pgoyette 
   1648  1.1.1.1.2.2  pgoyette 2015-03-25  Renlin Li  <renlin.li (a] arm.com>
   1649  1.1.1.1.2.2  pgoyette 
   1650  1.1.1.1.2.2  pgoyette 	* config/tc-aarch64.c (mapping_state): Remove first MAP_DATA emitting
   1651  1.1.1.1.2.2  pgoyette 	code.
   1652  1.1.1.1.2.2  pgoyette 	(mapping_state_2): Emit first MAP_DATA symbol here.
   1653  1.1.1.1.2.2  pgoyette 
   1654  1.1.1.1.2.2  pgoyette 2015-03-24  H.J. Lu  <hongjiu.lu (a] intel.com>
   1655  1.1.1.1.2.2  pgoyette 
   1656  1.1.1.1.2.2  pgoyette 	PR gas/18087
   1657  1.1.1.1.2.2  pgoyette 	* write.c (compress_debug): Don't write the zlib header if
   1658  1.1.1.1.2.2  pgoyette 	compression didn't make the section smaller.
   1659  1.1.1.1.2.2  pgoyette 
   1660  1.1.1.1.2.2  pgoyette 2015-03-24  Terry Guo  <terry.guo (a] arm.com>
   1661  1.1.1.1.2.2  pgoyette 
   1662  1.1.1.1.2.2  pgoyette 	* config/tc-arm.c (no_cpu_selected): Use new macro to compare
   1663  1.1.1.1.2.2  pgoyette 	features.
   1664  1.1.1.1.2.2  pgoyette 	(parse_psr): Likewise.
   1665  1.1.1.1.2.2  pgoyette 	(do_t_mrs): Likewise.
   1666  1.1.1.1.2.2  pgoyette 	(do_t_msr): Likewise.
   1667  1.1.1.1.2.2  pgoyette 	(static const arm_feature_set arm_ext_*): Defined with new macros.
   1668  1.1.1.1.2.2  pgoyette 	(static const arm_feature_set arm_cext_*): Likewise.
   1669  1.1.1.1.2.2  pgoyette 	(static const arm_feature_set fpu_fpa_ext_*): Likewise.
   1670  1.1.1.1.2.2  pgoyette 	(static const arm_feature_set fpu_vfp_ext_*): Likewise.
   1671  1.1.1.1.2.2  pgoyette 	(deprecated_coproc_regs): Likewise.
   1672  1.1.1.1.2.2  pgoyette 	(UL_BARRIER): Likewise.
   1673  1.1.1.1.2.2  pgoyette 	(barrier_opt_names): Likewise.
   1674  1.1.1.1.2.2  pgoyette 	(arm_cpus): Likewise.
   1675  1.1.1.1.2.2  pgoyette 	(arm_extensions): Likewise.
   1676  1.1.1.1.2.2  pgoyette 
   1677  1.1.1.1.2.2  pgoyette 2015-03-20  H.J. Lu  <hongjiu.lu (a] intel.com>
   1678  1.1.1.1.2.2  pgoyette 
   1679  1.1.1.1.2.2  pgoyette 	* config/tc-i386.c (i386_align_code): Limit multi-byte nop
   1680  1.1.1.1.2.2  pgoyette 	instructions to 10 bytes.
   1681  1.1.1.1.2.2  pgoyette 
   1682  1.1.1.1.2.2  pgoyette 2015-03-19  Nick Clifton  <nickc (a] redhat.com>
   1683  1.1.1.1.2.2  pgoyette 
   1684  1.1.1.1.2.2  pgoyette 	* config/tc-rl78.c (enum options): Add G13 and G14.
   1685  1.1.1.1.2.2  pgoyette 	(md_longopts): Add -mg13 and -mg14.
   1686  1.1.1.1.2.2  pgoyette 	(md_parse_option): Handle -mg13 and -mg14.
   1687  1.1.1.1.2.2  pgoyette 	(md_show_usage): List -mg13 and -mg14.
   1688  1.1.1.1.2.2  pgoyette 	* doc/c-rl78.texi: Add description of -mg13 and -mg14 options.
   1689  1.1.1.1.2.2  pgoyette 
   1690  1.1.1.1.2.2  pgoyette 2015-03-18  Jon Turney  <jon.turney (a] dronecode.org.uk>
   1691  1.1.1.1.2.2  pgoyette 	    Nick Clifton  <nickc (a] redhat.com>
   1692  1.1.1.1.2.2  pgoyette 
   1693  1.1.1.1.2.2  pgoyette 	PR binutils/18087
   1694  1.1.1.1.2.2  pgoyette 	* doc/as.texinfo: Note that when gas compresses debug sections the
   1695  1.1.1.1.2.2  pgoyette 	compression is only performed if it makes the section smaller.
   1696  1.1.1.1.2.2  pgoyette 	* write.c (compress_debug): Do not compress a debug section if
   1697  1.1.1.1.2.2  pgoyette 	doing so would make it larger.
   1698  1.1.1.1.2.2  pgoyette 
   1699  1.1.1.1.2.2  pgoyette 2015-03-17  Ganesh Gopalasubramanian  <Ganesh.Gopalasubramanian (a] amd.com>
   1700  1.1.1.1.2.2  pgoyette 
   1701  1.1.1.1.2.2  pgoyette 	* config/tc-i386.c (cpu_arch): Add PROCESSOR_ZNVER flags.
   1702  1.1.1.1.2.2  pgoyette 	(i386_align_code): Add PROCESSOR_ZNVER cases.
   1703  1.1.1.1.2.2  pgoyette 	* config/tc-i386.h (processor_type): Add PROCESSOR_ZNVER.
   1704  1.1.1.1.2.2  pgoyette 	* doc/c-i386.texi: Add znver1 and clzero.
   1705  1.1.1.1.2.2  pgoyette 
   1706  1.1.1.1.2.2  pgoyette 2015-03-16  Nick Clifton  <nickc (a] redhat.com>
   1707  1.1.1.1.2.2  pgoyette 
   1708  1.1.1.1.2.2  pgoyette 	* dwarf2dbg.c (out_header): Remove spurious #if 1.
   1709  1.1.1.1.2.2  pgoyette 
   1710  1.1.1.1.2.2  pgoyette 2015-03-13  Jiong Wang  <jiong.wang (a] arm.com>
   1711  1.1.1.1.2.2  pgoyette 
   1712  1.1.1.1.2.2  pgoyette 	* config/tc-aarch64.c (warn_unpredictable_ldst): Don't warn on reg
   1713  1.1.1.1.2.2  pgoyette 	number 31.
   1714  1.1.1.1.2.2  pgoyette 
   1715  1.1.1.1.2.2  pgoyette 2015-03-13  Jiong Wang  <jiong.wang (a] arm.com>
   1716  1.1.1.1.2.2  pgoyette 
   1717  1.1.1.1.2.2  pgoyette 	* config/tc-aarch64.h (SUB_SEGMENT_ALIGN): Define to be zero.
   1718  1.1.1.1.2.2  pgoyette 
   1719  1.1.1.1.2.2  pgoyette 2015-03-12  Andrew Bennett  <andrew.bennett (a] imgtec.com>
   1720  1.1.1.1.2.2  pgoyette 
   1721  1.1.1.1.2.2  pgoyette 	* config/tc-mips.c (mips_cpu_info_table): Add i6400 entry.
   1722  1.1.1.1.2.2  pgoyette 	* doc/c-mips.texi: Document i6400 -march option.
   1723  1.1.1.1.2.2  pgoyette 
   1724  1.1.1.1.2.2  pgoyette 2015-03-12  Nick Clifton  <nickc (a] redhat.com>
   1725  1.1.1.1.2.2  pgoyette 
   1726  1.1.1.1.2.2  pgoyette 	PR gas/17444
   1727  1.1.1.1.2.2  pgoyette 	* config/tc-arm.h (MD_APPLY_SYM_VALUE): Pass the current segment
   1728  1.1.1.1.2.2  pgoyette 	to arm_apply_sym_value.  Update prototype.
   1729  1.1.1.1.2.2  pgoyette 	* config/tc-arm.c (arm_apply_sym_value): Add segment argument.
   1730  1.1.1.1.2.2  pgoyette 	Do not apply the value if the symbol is in a different segment to
   1731  1.1.1.1.2.2  pgoyette 	the current segment.
   1732  1.1.1.1.2.2  pgoyette 
   1733  1.1.1.1.2.2  pgoyette 2015-03-11  Alan Modra  <amodra (a] gmail.com>
   1734  1.1.1.1.2.2  pgoyette 
   1735  1.1.1.1.2.2  pgoyette 	* config/tc-ppc.c (md_assemble): Don't abort on 8 byte insn fixups.
   1736  1.1.1.1.2.2  pgoyette 	(md_apply_fix): Report an error on data-only fixups used with insns.
   1737  1.1.1.1.2.2  pgoyette 
   1738  1.1.1.1.2.2  pgoyette 2015-03-10  Andreas Krebbel  <krebbel (a] linux.vnet.ibm.com>
   1739  1.1.1.1.2.2  pgoyette 
   1740  1.1.1.1.2.2  pgoyette 	* config/tc-s390.c (md_gather_operands): Check for valid
   1741  1.1.1.1.2.2  pgoyette 	length field operands.
   1742  1.1.1.1.2.2  pgoyette 
   1743  1.1.1.1.2.2  pgoyette 2015-03-10  Michael Perkins  <perkinsmg75 (a] yahoo.co.uk>
   1744  1.1.1.1.2.2  pgoyette 
   1745  1.1.1.1.2.2  pgoyette 	* config/tc-arm.c (parse_operands): Fix bug setting writeback
   1746  1.1.1.1.2.2  pgoyette 	values for '^' on OP_REGLSTs.
   1747  1.1.1.1.2.2  pgoyette 	(do_push_pop): Add new writeback constraint.
   1748  1.1.1.1.2.2  pgoyette 
   1749  1.1.1.1.2.2  pgoyette 2015-03-10  Renlin Li  <renlin.li (a] arm.com>
   1750  1.1.1.1.2.2  pgoyette 
   1751  1.1.1.1.2.2  pgoyette 	* config/tc-arm.c (mapping_state): Remove first MAP_DATA emitting code.
   1752  1.1.1.1.2.2  pgoyette 	(mapping_state_2): Emit first MAP_DATA symbol here.
   1753  1.1.1.1.2.2  pgoyette 
   1754  1.1.1.1.2.2  pgoyette 2015-03-10  Matthew Wahab  <matthew.wahab (a] arm.com>
   1755  1.1.1.1.2.2  pgoyette 
   1756  1.1.1.1.2.2  pgoyette 	* config/tc-aarch64.c (mapping_state): Set minimum alignment for
   1757  1.1.1.1.2.2  pgoyette 	code sections.
   1758  1.1.1.1.2.2  pgoyette 
   1759  1.1.1.1.2.2  pgoyette 2015-03-10  Nick Clifton  <nickc (a] redhat.com>
   1760  1.1.1.1.2.2  pgoyette 
   1761  1.1.1.1.2.2  pgoyette 	PR gas/17852
   1762  1.1.1.1.2.2  pgoyette 	* config/tc-arm.c (md_begin): Ensure that selected_cpu is
   1763  1.1.1.1.2.2  pgoyette 	initialised when CPU_DEFAULT is defined.
   1764  1.1.1.1.2.2  pgoyette 
   1765  1.1.1.1.2.2  pgoyette 2015-03-05  Nick Clifton  <nickc (a] redhat.com>
   1766  1.1.1.1.2.2  pgoyette 
   1767  1.1.1.1.2.2  pgoyette 	* config/tc-v850.c (md_parse_option): Fix code to set or clear
   1768  1.1.1.1.2.2  pgoyette 	EF_RH850_DATA_ALIGN8 bit in ELF header, based upon the use of the
   1769  1.1.1.1.2.2  pgoyette 	-m8byte-align and -m4byte-align command line options.
   1770  1.1.1.1.2.2  pgoyette 
   1771  1.1.1.1.2.2  pgoyette 2015-03-04  Richard Sandiford  <richard.sandiford (a] arm.com>
   1772  1.1.1.1.2.2  pgoyette 
   1773  1.1.1.1.2.2  pgoyette 	PR gas/17843
   1774  1.1.1.1.2.2  pgoyette 	* config/tc-aarch64.c (process_movw_reloc_info): Allow
   1775  1.1.1.1.2.2  pgoyette 	R_AARCH64_TLSLE_MOVW_TPREL_G0_NC and R_AARCH64_TLSLE_MOVW_TPREL_G1_NC
   1776  1.1.1.1.2.2  pgoyette 	for MOVK.
   1777  1.1.1.1.2.2  pgoyette 
   1778  1.1.1.1.2.2  pgoyette 2015-02-28  Alan Modra  <amodra (a] gmail.com>
   1779  1.1.1.1.2.2  pgoyette 
   1780  1.1.1.1.2.2  pgoyette 	* write.c (SUB_SEGMENT_ALIGN): Don't pad non-code sections at
   1781  1.1.1.1.2.2  pgoyette 	end to their alignment.
   1782  1.1.1.1.2.2  pgoyette 
   1783  1.1.1.1.2.2  pgoyette 2015-02-19  Marcus Shawcroft  <marcus.shawcroft (a] arm.com>
   1784  1.1.1.1.2.2  pgoyette 
   1785  1.1.1.1.2.2  pgoyette 	* config/tc-aarch64.c (reloc_table_entry): Generate
   1786  1.1.1.1.2.2  pgoyette 	BFD_RELOC_AARCH64_TLSDESC_ADR_PREL21.
   1787  1.1.1.1.2.2  pgoyette 	(md_apply_fix, aarch64_force_relocation): Handle
   1788  1.1.1.1.2.2  pgoyette 	BFD_RELOC_AARCH64_TLSGD_ADR_PREL21.
   1789  1.1.1.1.2.2  pgoyette 
   1790  1.1.1.1.2.2  pgoyette 2015-02-19  Marcus Shawcroft  <marcus.shawcroft (a] arm.com>
   1791  1.1.1.1.2.2  pgoyette 
   1792  1.1.1.1.2.2  pgoyette 	* config/tc-aarch64.c (reloc_table_entry): Generate
   1793  1.1.1.1.2.2  pgoyette 	BFD_RELOC_AARCH64_TLSGD_ADR_PREL21.
   1794  1.1.1.1.2.2  pgoyette 	(md_apply_fix, aarch64_force_relocation): Handle
   1795  1.1.1.1.2.2  pgoyette 	BFD_RELOC_AARCH64_TLSGD_ADR_PREL21.
   1796  1.1.1.1.2.2  pgoyette 
   1797  1.1.1.1.2.2  pgoyette 2015-02-19  Marcus Shawcroft  <marcus.shawcroft (a] arm.com>
   1798  1.1.1.1.2.2  pgoyette 
   1799  1.1.1.1.2.2  pgoyette 	* config/tc-aarch64.c (reloc_table_entry): Generate
   1800  1.1.1.1.2.2  pgoyette 	BFD_RELOC_AARCH64_TLSIE_LD_GOTTPREL_PREL19.
   1801  1.1.1.1.2.2  pgoyette 	(md_apply_fix, aarch64_force_relocation): Handle
   1802  1.1.1.1.2.2  pgoyette 	BFD_RELOC_AARCH64_TLSIE_LD_GOTTPREL_PREL19.
   1803  1.1.1.1.2.2  pgoyette 
   1804  1.1.1.1.2.2  pgoyette 2015-02-26  Marcus Shawcroft  <marcus.shawcroft (a] arm.com>
   1805  1.1.1.1.2.2  pgoyette 
   1806  1.1.1.1.2.2  pgoyette 	* config/tc-aarch64.c (reloc_table_entry): Add ld_literal_type.
   1807  1.1.1.1.2.2  pgoyette 	(reloc_table): Likewise.
   1808  1.1.1.1.2.2  pgoyette 	(parse_address_main): Use ld_literal_type.
   1809  1.1.1.1.2.2  pgoyette 
   1810  1.1.1.1.2.2  pgoyette 2015-02-26  Marcus Shawcroft  <marcus.shawcroft (a] arm.com>
   1811  1.1.1.1.2.2  pgoyette 
   1812  1.1.1.1.2.2  pgoyette 	* config/tc-aarch64.c (reloc_table_entry): Add adr_type.
   1813  1.1.1.1.2.2  pgoyette 	(reloc_table): Likewise.
   1814  1.1.1.1.2.2  pgoyette 	(parse_address_main): Use adr_type.
   1815  1.1.1.1.2.2  pgoyette 
   1816  1.1.1.1.2.2  pgoyette 2015-02-26  Marcus Shawcroft  <marcus.shawcroft (a] arm.com>
   1817  1.1.1.1.2.2  pgoyette 
   1818  1.1.1.1.2.2  pgoyette 	* config/tc-aarch64.c (aarch64_arch_any, aarch64_arch_node): Remove.
   1819  1.1.1.1.2.2  pgoyette 
   1820  1.1.1.1.2.2  pgoyette 2015-02-25  Andrew Burgess  <andrew.burgess (a] embecosm.com>
   1821  1.1.1.1.2.2  pgoyette 
   1822  1.1.1.1.2.2  pgoyette 	* config/tc-avr.c: Add elf32-avr.h include.
   1823  1.1.1.1.2.2  pgoyette 	(struct avr_property_record_link): New structure.
   1824  1.1.1.1.2.2  pgoyette 	(avr_output_property_section_header): New function.
   1825  1.1.1.1.2.2  pgoyette 	(avr_record_size): New function.
   1826  1.1.1.1.2.2  pgoyette 	(avr_output_property_record): New function.
   1827  1.1.1.1.2.2  pgoyette 	(avr_create_property_section): New function.
   1828  1.1.1.1.2.2  pgoyette 	(avr_handle_align): New function.
   1829  1.1.1.1.2.2  pgoyette 	(exclude_section_from_property_tables): New function.
   1830  1.1.1.1.2.2  pgoyette 	(create_record_for_frag): New function.
   1831  1.1.1.1.2.2  pgoyette 	(append_records_for_section): New function.
   1832  1.1.1.1.2.2  pgoyette 	(avr_create_and_fill_property_section): New function.
   1833  1.1.1.1.2.2  pgoyette 	(avr_post_relax_hook): New function.
   1834  1.1.1.1.2.2  pgoyette 	* config/tc-avr.h (md_post_relax_hook): Define.
   1835  1.1.1.1.2.2  pgoyette 	(avr_post_relax_hook): Declare.
   1836  1.1.1.1.2.2  pgoyette 	(HANDLE_ALIGN): Define.
   1837  1.1.1.1.2.2  pgoyette 	(avr_handle_align): Declare.
   1838  1.1.1.1.2.2  pgoyette 	(strut avr_frag_data): New structure.
   1839  1.1.1.1.2.2  pgoyette 	(TC_FRAG_TYPE): Define.
   1840  1.1.1.1.2.2  pgoyette 
   1841  1.1.1.1.2.2  pgoyette 2015-02-25  Matthew Wahab  <matthew.wahab (a] arm.com>
   1842  1.1.1.1.2.2  pgoyette 
   1843  1.1.1.1.2.2  pgoyette 	* doc/c-arm.texi (-mcpu=): Add cortex-a53, cortex-a57 and
   1844  1.1.1.1.2.2  pgoyette 	cortex-a72.
   1845  1.1.1.1.2.2  pgoyette 
   1846  1.1.1.1.2.2  pgoyette 2015-02-24  Nick Clifton  <nickc (a] redhat.com>
   1847  1.1.1.1.2.2  pgoyette 
   1848  1.1.1.1.2.2  pgoyette 	* config/tc-v850.c (soft_float): New variable.
   1849  1.1.1.1.2.2  pgoyette 	(v850_data_8): New variable.
   1850  1.1.1.1.2.2  pgoyette 	(md_show_usage): Add -msoft-float/-mhard-float.
   1851  1.1.1.1.2.2  pgoyette 	(md_parse_option): Likewise.
   1852  1.1.1.1.2.2  pgoyette 	(md_begin): Set the default value of soft_float.
   1853  1.1.1.1.2.2  pgoyette 	(v850_md_end): New function.  Creates a note section.
   1854  1.1.1.1.2.2  pgoyette 	* config/tc-v850.h (md_end): Define.
   1855  1.1.1.1.2.2  pgoyette 	* doc/c-v850.texi: Document -msoft-float/-mhard-float.
   1856  1.1.1.1.2.2  pgoyette 
   1857  1.1.1.1.2.2  pgoyette 2015-02-23  Yoshinori Sato  <ysato (a] users.sourceforge.jp>
   1858  1.1.1.1.2.2  pgoyette 
   1859  1.1.1.1.2.2  pgoyette 	* config/tc-h8300.c (line_separater_chars): Add a version for
   1860  1.1.1.1.2.2  pgoyette 	h8300-linux that includes a separator.
   1861  1.1.1.1.2.2  pgoyette 	(default_mach): New variable.
   1862  1.1.1.1.2.2  pgoyette 	(md_main): Use it.
   1863  1.1.1.1.2.2  pgoyette 	(md_longopts): Add '--march' option.
   1864  1.1.1.1.2.2  pgoyette 	(md_parse_option): Parse the new option.
   1865  1.1.1.1.2.2  pgoyette 	* config/tc-h8300.h (TARGET_FORMAT): Add elf32-h8300-linux.
   1866  1.1.1.1.2.2  pgoyette 	* configure.tgt: Add h8300-*-linux
   1867  1.1.1.1.2.2  pgoyette 	* doc/c-h8300.texi: Document --march.
   1868  1.1.1.1.2.2  pgoyette 
   1869  1.1.1.1.2.2  pgoyette 2015-02-23  Nick Clifton  <nickc (a] redhat.com>
   1870  1.1.1.1.2.2  pgoyette 
   1871  1.1.1.1.2.2  pgoyette 	PR 17940
   1872  1.1.1.1.2.2  pgoyette 	* dwarf2dbg.c (out_header): When generating dwarf sections use
   1873  1.1.1.1.2.2  pgoyette 	real symbols not temps for the start and end symbols.
   1874  1.1.1.1.2.2  pgoyette 	* config/tc-msp430.h (TC_FORCE_RELOCATION_SUB_SAME): Also prevent
   1875  1.1.1.1.2.2  pgoyette 	adjustments to relocations in debug sections.
   1876  1.1.1.1.2.2  pgoyette 	(TC_LINKRELAX_FIXUP): Likewise.
   1877  1.1.1.1.2.2  pgoyette 
   1878  1.1.1.1.2.2  pgoyette 2015-02-19  Alan Modra  <amodra (a] gmail.com>
   1879  1.1.1.1.2.2  pgoyette 
   1880  1.1.1.1.2.2  pgoyette 	* doc/as.texinfo (Local Symbol Names): Don't use ':' in pxref.
   1881  1.1.1.1.2.2  pgoyette 	* doc/c-i386.texi: Reorder i386-Bugs after i386-Arch.
   1882  1.1.1.1.2.2  pgoyette 
   1883  1.1.1.1.2.2  pgoyette 2015-02-11  Matthew Wahab  <matthew.wahab (a] arm.com>
   1884  1.1.1.1.2.2  pgoyette 
   1885  1.1.1.1.2.2  pgoyette 	* config/tc-aarch64.c (aarch64_cpus): Fix code formatting.
   1886  1.1.1.1.2.2  pgoyette 
   1887  1.1.1.1.2.2  pgoyette 2015-02-11  Matthew Wahab  <matthew.wahab (a] arm.com>
   1888  1.1.1.1.2.2  pgoyette 
   1889  1.1.1.1.2.2  pgoyette 	* config/tc-arm.c: Add support for Cortex-A72.
   1890  1.1.1.1.2.2  pgoyette 
   1891  1.1.1.1.2.2  pgoyette 2015-02-09  Kyrylo Tkachov  <kyrylo.tkachov (a] arm.com>
   1892  1.1.1.1.2.2  pgoyette 
   1893  1.1.1.1.2.2  pgoyette 	* config/tc-arm.c (warn_deprecated_sp): Use as_tsktsk instead
   1894  1.1.1.1.2.2  pgoyette 	of as_warn for deprecation messages.
   1895  1.1.1.1.2.2  pgoyette 	(encode_arm_addr_mode_2): Likewise.
   1896  1.1.1.1.2.2  pgoyette 	(check_obsolete): Likewise.
   1897  1.1.1.1.2.2  pgoyette 	(do_rd_rm_rn): Likewise.
   1898  1.1.1.1.2.2  pgoyette 	(do_co_reg): Likewise.
   1899  1.1.1.1.2.2  pgoyette 	(do_setend): Likewise.
   1900  1.1.1.1.2.2  pgoyette 	(do_t_mov_cmp): Likewise.
   1901  1.1.1.1.2.2  pgoyette 	(do_neon_ldr_str): Likewise.
   1902  1.1.1.1.2.2  pgoyette 	(opcode_lookup): Likewise.
   1903  1.1.1.1.2.2  pgoyette 	(if_fsm_post_encode): Likewise.
   1904  1.1.1.1.2.2  pgoyette 	(md_assemble): Likewise.
   1905  1.1.1.1.2.2  pgoyette 
   1906  1.1.1.1.2.2  pgoyette 2015-02-06  Jan Beulich  <jbeulich (a] suse.com>
   1907  1.1.1.1.2.2  pgoyette 
   1908  1.1.1.1.2.2  pgoyette 	* dw2gencfi.c (select_cie_for_fde): Also bail on CFI_label.
   1909  1.1.1.1.2.2  pgoyette 	(cfi_change_reg_numbers): Also do nothing for CFI_label.
   1910  1.1.1.1.2.2  pgoyette 	(cfi_pseudo_table): Also handle .cfi_label when not supporting
   1911  1.1.1.1.2.2  pgoyette 	CFI directives.
   1912  1.1.1.1.2.2  pgoyette 
   1913  1.1.1.1.2.2  pgoyette 2015-02-05  Alan Modra  <amodra (a] gmail.com>
   1914  1.1.1.1.2.2  pgoyette 
   1915  1.1.1.1.2.2  pgoyette 	* config/tc-msp430.c (md_assemble): Correct size passed to
   1916  1.1.1.1.2.2  pgoyette 	extract_cmd.  Remove index check.
   1917  1.1.1.1.2.2  pgoyette 
   1918  1.1.1.1.2.2  pgoyette 2015-02-04  Matthew Wahab  <matthew.wahab (a] arm.com>
   1919  1.1.1.1.2.2  pgoyette 
   1920  1.1.1.1.2.2  pgoyette 	* config/tc-aarch64.c (aarch64_cpus): Add support for Cortex-A72.
   1921  1.1.1.1.2.2  pgoyette 	* doc/c-aarch64.texi (-mcpu=): Add "cortex-a72".
   1922  1.1.1.1.2.2  pgoyette 
   1923  1.1.1.1.2.2  pgoyette 2015-02-04  Nick Clifton  <nickc (a] redhat.com>
   1924  1.1.1.1.2.2  pgoyette 
   1925  1.1.1.1.2.2  pgoyette 	* config/rl78-parse.y (addsubw): Fix encoding of [HL] variant of
   1926  1.1.1.1.2.2  pgoyette 	these instructions.
   1927  1.1.1.1.2.2  pgoyette 
   1928  1.1.1.1.2.2  pgoyette 2015-02-03  Renlin Li  <renlin.li (a] arm.com>
   1929  1.1.1.1.2.2  pgoyette 
   1930  1.1.1.1.2.2  pgoyette 	* doc/c-aarch64.texi (.arch): Document the directive.
   1931  1.1.1.1.2.2  pgoyette 	(.arch_extension): Likewise.
   1932  1.1.1.1.2.2  pgoyette 
   1933  1.1.1.1.2.2  pgoyette 2015-02-03  Nick Clifton  <nickc (a] redhat.com>
   1934  1.1.1.1.2.2  pgoyette 
   1935  1.1.1.1.2.2  pgoyette 	* config/tc-rl78.h (TC_PARSE_CONS_EXPRESSION): Define.
   1936  1.1.1.1.2.2  pgoyette 
   1937  1.1.1.1.2.2  pgoyette 2015-01-28  James Bowman  <james.bowman (a] ftdichip.com>
   1938  1.1.1.1.2.2  pgoyette 
   1939  1.1.1.1.2.2  pgoyette 	* Makefile.am: Add FT32 files.
   1940  1.1.1.1.2.2  pgoyette 	* config/tc-ft32.c: New file.
   1941  1.1.1.1.2.2  pgoyette 	* config/tc-ft32.h: New file.
   1942  1.1.1.1.2.2  pgoyette 	* configure.tgt: Add FT32 support.
   1943  1.1.1.1.2.2  pgoyette 	* Makefile.in: Regenerate.
   1944  1.1.1.1.2.2  pgoyette 	* po/POTFILES.in: Regenerate.
   1945  1.1.1.1.2.2  pgoyette 
   1946  1.1.1.1.2.2  pgoyette 2015-01-27  Kuan-Lin Chen  <kuanlinchentw (a] gmail.com>
   1947  1.1.1.1.2.2  pgoyette 
   1948  1.1.1.1.2.2  pgoyette 	* config/tc-nds32.c (do_pseudo_la_internal): Limit the second argument
   1949  1.1.1.1.2.2  pgoyette 	of instruction la to a symbol.
   1950  1.1.1.1.2.2  pgoyette 
   1951  1.1.1.1.2.2  pgoyette 2015-01-27  Kuan-Lin Chen  <kuanlinchentw (a] gmail.com>
   1952  1.1.1.1.2.2  pgoyette 
   1953  1.1.1.1.2.2  pgoyette 	* config/tc-nds32.c (nds32_parse_name): Ignore when the input is
   1954  1.1.1.1.2.2  pgoyette 	section name.
   1955  1.1.1.1.2.2  pgoyette 
   1956  1.1.1.1.2.2  pgoyette 2015-01-19  Alan Modra  <amodra (a] gmail.com>
   1957  1.1.1.1.2.2  pgoyette 
   1958  1.1.1.1.2.2  pgoyette 	* read.c (s_reloc): Match BFD_RELOC_NONE, BFD_RELOC{8,16,32,64}.
   1959  1.1.1.1.2.2  pgoyette 	* write.c (get_frag_for_reloc): Allow match just past end of frag.
   1960  1.1.1.1.2.2  pgoyette 
   1961  1.1.1.1.2.2  pgoyette 2015-01-16  Andreas Krebbel  <krebbel (a] linux.vnet.ibm.com>
   1962  1.1.1.1.2.2  pgoyette 
   1963  1.1.1.1.2.2  pgoyette 	* config/tc-s390.c (struct pd_reg): Remove.
   1964  1.1.1.1.2.2  pgoyette 	(pre_defined_registers): Remove.
   1965  1.1.1.1.2.2  pgoyette 	(REG_NAME_CNT): Remove.
   1966  1.1.1.1.2.2  pgoyette 	(reg_name_search): Calculate the register number instead of doing
   1967  1.1.1.1.2.2  pgoyette 	a lookup.
   1968  1.1.1.1.2.2  pgoyette 	(register_name, tc_s390_regname_to_dw2regnum): Adopt to the new
   1969  1.1.1.1.2.2  pgoyette 	reg_name_search signature.
   1970  1.1.1.1.2.2  pgoyette 	(s390_parse_cpu): Support the new arch string z13.
   1971  1.1.1.1.2.2  pgoyette 	(s390_insert_operand): Support for vector registers with the extra
   1972  1.1.1.1.2.2  pgoyette 	field for the fifth bit of each vector register operand.
   1973  1.1.1.1.2.2  pgoyette 	(md_gather_operand): Adjust to the new handling of optional
   1974  1.1.1.1.2.2  pgoyette 	parameters.
   1975  1.1.1.1.2.2  pgoyette 
   1976  1.1.1.1.2.2  pgoyette 	* doc/as.texinfo: Document the z13 cpu string.
   1977  1.1.1.1.2.2  pgoyette 
   1978  1.1.1.1.2.2  pgoyette 2015-01-13  Matthew Wahab  <matthew.wahab (a] arm.com>
   1979  1.1.1.1.2.2  pgoyette 
   1980  1.1.1.1.2.2  pgoyette 	* config/tc-arm.c (parse_ifimm_zero): Accept #0x0 as a synonym for
   1981  1.1.1.1.2.2  pgoyette 	#0, restoring previous behaviour.
   1982  1.1.1.1.2.2  pgoyette 
   1983  1.1.1.1.2.2  pgoyette 2015-01-12  Jan Beulich  <jbeulich (a] suse.com>
   1984  1.1.1.1.2.2  pgoyette 
   1985  1.1.1.1.2.2  pgoyette 	* dw2gencfi.c (cfi_add_label, dot_cfi_label): New.
   1986  1.1.1.1.2.2  pgoyette 	(cfi_pseudo_table): Add "cfi_label".
   1987  1.1.1.1.2.2  pgoyette 	(output_cfi_insn): Handle CFI_label.
   1988  1.1.1.1.2.2  pgoyette 	(select_cie_for_fde): Als terminate CIE when encountering
   1989  1.1.1.1.2.2  pgoyette 	CFI_label.
   1990  1.1.1.1.2.2  pgoyette 	* dw2gencfi.h (cfi_add_label): Declare.
   1991  1.1.1.1.2.2  pgoyette 	(struct cfi_insn_data): New member "sym_name".
   1992  1.1.1.1.2.2  pgoyette 	(CFI_label): New.
   1993  1.1.1.1.2.2  pgoyette 	* read.c (read_symbol_name): Drop "static".
   1994  1.1.1.1.2.2  pgoyette 	* read.h (read_symbol_name): Declare.
   1995  1.1.1.1.2.2  pgoyette 
   1996  1.1.1.1.2.2  pgoyette 2015-01-12  Jan Beulich  <jbeulich (a] suse.com>
   1997  1.1.1.1.2.2  pgoyette 
   1998  1.1.1.1.2.2  pgoyette 	* config/tc-arm.c (do_neon_shl_imm): Check immediate range.
   1999  1.1.1.1.2.2  pgoyette 	(do_neon_qshl_imm): Likewise.
   2000  1.1.1.1.2.2  pgoyette 
   2001  1.1.1.1.2.2  pgoyette 2015-01-12  Alan Modra  <amodra (a] gmail.com>
   2002  1.1.1.1.2.2  pgoyette 
   2003  1.1.1.1.2.2  pgoyette 	* read.c (s_altmacro, s_reloc): Make definition static.
   2004  1.1.1.1.2.2  pgoyette 
   2005  1.1.1.1.2.2  pgoyette 2015-01-10  Andrew Burgess  <andrew.burgess (a] embecosm.com>
   2006  1.1.1.1.2.2  pgoyette 
   2007  1.1.1.1.2.2  pgoyette 	* config/tc-avr.c (md_apply_fix): Update the contents of VALP for
   2008  1.1.1.1.2.2  pgoyette 	diff fixups.
   2009  1.1.1.1.2.2  pgoyette 
   2010  1.1.1.1.2.2  pgoyette 2015-01-09  Philipp Tomsich  <philipp.tomsich (a] theobroma-systems.com>
   2011  1.1.1.1.2.2  pgoyette 
   2012  1.1.1.1.2.2  pgoyette 	* config/tc-arm.c (arm_cpus): Add support for APM X-Gene 1 and
   2013  1.1.1.1.2.2  pgoyette 	X-Gene 2.
   2014  1.1.1.1.2.2  pgoyette 	* doc/c-arm.texi (ARM Options): Mention xgene1 and xgene2.
   2015  1.1.1.1.2.2  pgoyette 
   2016  1.1.1.1.2.2  pgoyette 2015-01-07  Jan Beulich <jbeulich (a] suse.com>
   2017  1.1.1.1.2.2  pgoyette 
   2018  1.1.1.1.2.2  pgoyette 	* config/tc-arm.c (struct arm_option_extension_value_table):
   2019  1.1.1.1.2.2  pgoyette 	Split field "value" into fields "merge_value" and "clear_value".
   2020  1.1.1.1.2.2  pgoyette 	(arm_extensions): Adjust initializer accordingly.
   2021  1.1.1.1.2.2  pgoyette 
   2022  1.1.1.1.2.2  pgoyette 2015-01-01  Alan Modra  <amodra (a] gmail.com>
   2023  1.1.1.1.2.2  pgoyette 
   2024  1.1.1.1.2.2  pgoyette 	* as.c (parse_args): Just print current year.
   2025  1.1.1.1.2.2  pgoyette 
   2026  1.1.1.1.2.2  pgoyette 2015-01-01  Alan Modra  <amodra (a] gmail.com>
   2027  1.1.1.1.2.2  pgoyette 
   2028  1.1.1.1.2.2  pgoyette 	Update year range in copyright notice of all files.
   2029  1.1.1.1.2.2  pgoyette 
   2030  1.1.1.1.2.2  pgoyette For older changes see ChangeLog-2014
   2031  1.1.1.1.2.2  pgoyette 
   2033  1.1.1.1.2.2  pgoyette Copyright (C) 2015 Free Software Foundation, Inc.
   2034  1.1.1.1.2.2  pgoyette 
   2035  1.1.1.1.2.2  pgoyette Copying and distribution of this file, with or without modification,
   2036  1.1.1.1.2.2  pgoyette are permitted in any medium without royalty provided the copyright
   2037  1.1.1.1.2.2  pgoyette notice and this notice are preserved.
   2038  1.1.1.1.2.2  pgoyette 
   2039  1.1.1.1.2.2  pgoyette Local Variables:
   2040  1.1.1.1.2.2  pgoyette mode: change-log
   2041  1.1.1.1.2.2  pgoyette left-margin: 8
   2042  1.1.1.1.2.2  pgoyette fill-column: 74
   2043  1.1.1.1.2.2  pgoyette version-control: never
   2044                        End:
   2045