mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-20 18:08:24 +08:00
* config/tc-mips.c (macro) [M_DINS, M_SEQ_I, M_SNE_I]: Cast
arguments to macro_build to match format.
This commit is contained in:
@ -1,5 +1,8 @@
|
|||||||
2009-01-23 Andreas Schwab <schwab@suse.de>
|
2009-01-23 Andreas Schwab <schwab@suse.de>
|
||||||
|
|
||||||
|
* config/tc-mips.c (macro) [M_DINS, M_SEQ_I, M_SNE_I]: Cast
|
||||||
|
arguments to macro_build to match format.
|
||||||
|
|
||||||
* config/obj-elf.h (LOCAL_LABEL_PREFIX): Conditionally define.
|
* config/obj-elf.h (LOCAL_LABEL_PREFIX): Conditionally define.
|
||||||
* config/tc-s390.h (LOCAL_LABEL_PREFIX): Don't define.
|
* config/tc-s390.h (LOCAL_LABEL_PREFIX): Don't define.
|
||||||
|
|
||||||
@ -93,10 +96,10 @@
|
|||||||
* config/tc-ppc.h: Likewise.
|
* config/tc-ppc.h: Likewise.
|
||||||
* config/tc-frv.h: Provide a prototype for frv_md_number_to_chars.
|
* config/tc-frv.h: Provide a prototype for frv_md_number_to_chars.
|
||||||
* config/te-vms.h (DWARF2_DIR_SHOULD_END_WITH_SEPARATOR,
|
* config/te-vms.h (DWARF2_DIR_SHOULD_END_WITH_SEPARATOR,
|
||||||
DWAR2_FILE_TIME_NAME, DWARF2_FILE_SIZE_NAME, DWARF2_FILEN_NAME):
|
DWAR2_FILE_TIME_NAME, DWARF2_FILE_SIZE_NAME, DWARF2_FILEN_NAME):
|
||||||
New file with new macros
|
New file with new macros
|
||||||
* dwarf2dbg.c (get_filenum, out_file_list): Default and call new
|
* dwarf2dbg.c (get_filenum, out_file_list): Default and call new
|
||||||
macros.
|
macros.
|
||||||
|
|
||||||
2009-01-15 Nick Clifton <nickc@redhat.com>
|
2009-01-15 Nick Clifton <nickc@redhat.com>
|
||||||
|
|
||||||
@ -105,7 +108,7 @@
|
|||||||
instructions before generating a Thumb2 nop.
|
instructions before generating a Thumb2 nop.
|
||||||
|
|
||||||
2009-01-14 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
|
2009-01-14 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
|
||||||
|
|
||||||
* config/tc-s390.h: Define LOCAL_LABEL_PREFIX.
|
* config/tc-s390.h: Define LOCAL_LABEL_PREFIX.
|
||||||
|
|
||||||
2009-01-12 Alan Modra <amodra@bigpond.net.au>
|
2009-01-12 Alan Modra <amodra@bigpond.net.au>
|
||||||
@ -172,10 +175,10 @@
|
|||||||
* config/tc-i386.c (build_modrm_byte): Remove 5 operand instruction
|
* config/tc-i386.c (build_modrm_byte): Remove 5 operand instruction
|
||||||
support. Don't swap REG and NDS for FMA.
|
support. Don't swap REG and NDS for FMA.
|
||||||
|
|
||||||
2009-01-02 Matthias Klose <doko@ubuntu.com>
|
2009-01-02 Matthias Klose <doko@ubuntu.com>
|
||||||
|
|
||||||
* itbl-ops.c (itbl_disassemble): Don't rely on undefined sprintf
|
* itbl-ops.c (itbl_disassemble): Don't rely on undefined sprintf
|
||||||
behaviour.
|
behaviour.
|
||||||
|
|
||||||
For older changes see ChangeLog-2008
|
For older changes see ChangeLog-2008
|
||||||
|
|
||||||
|
@ -5241,8 +5241,8 @@ macro (struct mips_cl_insn *ip)
|
|||||||
s = "dinsm";
|
s = "dinsm";
|
||||||
fmt = "t,r,+A,+F";
|
fmt = "t,r,+A,+F";
|
||||||
}
|
}
|
||||||
macro_build ((expressionS *) NULL, s, fmt, treg, sreg, pos,
|
macro_build ((expressionS *) NULL, s, fmt, treg, sreg, (int) pos,
|
||||||
pos + size - 1);
|
(int) (pos + size - 1));
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
@ -7637,7 +7637,7 @@ macro2 (struct mips_cl_insn *ip)
|
|||||||
&& imm_expr.X_add_number < 512)
|
&& imm_expr.X_add_number < 512)
|
||||||
{
|
{
|
||||||
macro_build (NULL, "seqi", "t,r,+Q", dreg, sreg,
|
macro_build (NULL, "seqi", "t,r,+Q", dreg, sreg,
|
||||||
imm_expr.X_add_number);
|
(int) imm_expr.X_add_number);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
if (imm_expr.X_op == O_constant
|
if (imm_expr.X_op == O_constant
|
||||||
@ -7799,7 +7799,7 @@ macro2 (struct mips_cl_insn *ip)
|
|||||||
&& imm_expr.X_add_number < 512)
|
&& imm_expr.X_add_number < 512)
|
||||||
{
|
{
|
||||||
macro_build (NULL, "snei", "t,r,+Q", dreg, sreg,
|
macro_build (NULL, "snei", "t,r,+Q", dreg, sreg,
|
||||||
imm_expr.X_add_number);
|
(int) imm_expr.X_add_number);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
if (imm_expr.X_op == O_constant
|
if (imm_expr.X_op == O_constant
|
||||||
|
Reference in New Issue
Block a user