* dwarf2out.c (constant_size): Use HOST_WIDE_INT in parameter type.

From-SVN: r140769
This commit is contained in:
Eric Botcazou 2008-09-29 23:56:19 +00:00 committed by Eric Botcazou
parent 2dda7d28ea
commit 2eb20e13f1
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2008-09-29 Eric Botcazou <ebotcazou@adacore.com>
* dwarf2out.c (constant_size): Use HOST_WIDE_INT in parameter type.
2008-09-29 Joseph Myers <joseph@codesourcery.com>
* ifcvt.c (noce_emit_store_flag): If using condition from original

View File

@ -4990,7 +4990,7 @@ static void record_comdat_symbol_number (dw_die_ref, htab_t, unsigned);
static void add_sibling_attributes (dw_die_ref);
static void build_abbrev_table (dw_die_ref);
static void output_location_lists (dw_die_ref);
static int constant_size (long unsigned);
static int constant_size (unsigned HOST_WIDE_INT);
static unsigned long size_of_die (dw_die_ref);
static void calc_die_sizes (dw_die_ref);
static void mark_dies (dw_die_ref);
@ -7507,7 +7507,7 @@ build_abbrev_table (dw_die_ref die)
/* Return the power-of-two number of bytes necessary to represent VALUE. */
static int
constant_size (long unsigned int value)
constant_size (unsigned HOST_WIDE_INT value)
{
int log;