Commit 83b4db6d by Andris Pavenis Committed by Jeff Law

lto-streamer-out.c (write_global_references): Adjust integer type.

	* lto-streamer-out.c (write_global_references): Adjust integer type.
	(lto_output_decl_state_refs): Likewise.

From-SVN: r230436
parent 0f62c7a0
2015-11-16 Andris Pavenis <andris.pavenis@iki.fi>
* lto-streamer-out.c (write_global_references): Adjust integer type.
(lto_output_decl_state_refs): Likewise.
2015-11-16 James Greenhalgh <james.greenhalgh@arm.com> 2015-11-16 James Greenhalgh <james.greenhalgh@arm.com>
* config/arm/arm-cores.def (cortex-a35): New. * config/arm/arm-cores.def (cortex-a35): New.
...@@ -2387,7 +2387,7 @@ write_global_references (struct output_block *ob, ...@@ -2387,7 +2387,7 @@ write_global_references (struct output_block *ob,
for (index = 0; index < size; index++) for (index = 0; index < size; index++)
{ {
uint32_t slot_num; unsigned slot_num;
t = lto_tree_ref_encoder_get_tree (encoder, index); t = lto_tree_ref_encoder_get_tree (encoder, index);
streamer_tree_cache_lookup (ob->writer_cache, t, &slot_num); streamer_tree_cache_lookup (ob->writer_cache, t, &slot_num);
...@@ -2422,7 +2422,7 @@ lto_output_decl_state_refs (struct output_block *ob, ...@@ -2422,7 +2422,7 @@ lto_output_decl_state_refs (struct output_block *ob,
struct lto_out_decl_state *state) struct lto_out_decl_state *state)
{ {
unsigned i; unsigned i;
uint32_t ref; unsigned ref;
tree decl; tree decl;
/* Write reference to FUNCTION_DECL. If there is not function, /* Write reference to FUNCTION_DECL. If there is not function,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment