mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-05 15:15:42 +00:00
Don't pass unadorned zeros to varargs functions
PR gas/17753 * config/tc-mep.c (md_begin): Specify types of vararg literals.
This commit is contained in:
committed by
Alan Modra
parent
5c294fee9a
commit
6fd9d738c0
@@ -1,3 +1,8 @@
|
|||||||
|
2014-12-25 Yaakov Selkowitz <yselkowi@redhat.com>
|
||||||
|
|
||||||
|
PR gas/17753
|
||||||
|
* config/tc-mep.c (md_begin): Specify types of vararg literals.
|
||||||
|
|
||||||
2014-12-24 Andrew Burgess <andrew.burgess@embecosm.com>
|
2014-12-24 Andrew Burgess <andrew.burgess@embecosm.com>
|
||||||
|
|
||||||
* doc/c-avr.texi: Document -mlink-relax and -mno-link-relax.
|
* doc/c-avr.texi: Document -mlink-relax and -mno-link-relax.
|
||||||
|
|||||||
@@ -486,12 +486,12 @@ md_begin ()
|
|||||||
mep_cop = mep_config_map[mep_config_index].cpu_flag & EF_MEP_COP_MASK;
|
mep_cop = mep_config_map[mep_config_index].cpu_flag & EF_MEP_COP_MASK;
|
||||||
|
|
||||||
/* Set the machine number and endian. */
|
/* Set the machine number and endian. */
|
||||||
gas_cgen_cpu_desc = mep_cgen_cpu_open (CGEN_CPU_OPEN_MACHS, 0,
|
gas_cgen_cpu_desc = mep_cgen_cpu_open (CGEN_CPU_OPEN_MACHS, 0U,
|
||||||
CGEN_CPU_OPEN_ENDIAN,
|
CGEN_CPU_OPEN_ENDIAN,
|
||||||
target_big_endian
|
target_big_endian
|
||||||
? CGEN_ENDIAN_BIG
|
? CGEN_ENDIAN_BIG
|
||||||
: CGEN_ENDIAN_LITTLE,
|
: CGEN_ENDIAN_LITTLE,
|
||||||
CGEN_CPU_OPEN_ISAS, 0,
|
CGEN_CPU_OPEN_ISAS, (CGEN_BITSET *) 0,
|
||||||
CGEN_CPU_OPEN_END);
|
CGEN_CPU_OPEN_END);
|
||||||
mep_cgen_init_asm (gas_cgen_cpu_desc);
|
mep_cgen_init_asm (gas_cgen_cpu_desc);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user