From 6009ee7b4164ad1ee395b6fe013b7c7037932e57 Mon Sep 17 00:00:00 2001 From: Martin Jambor Date: Tue, 1 Dec 2009 11:51:07 +0100 Subject: cgraph.h (struct cgraph_edge): Reorder fields. 2009-12-01 Martin Jambor * cgraph.h (struct cgraph_edge): Reorder fields. Make loop_nest unsigned short int. * ipa-prop.h (struct ipa_param_call_note): Likewise. * ipa-prop.c (ipa_note_param_call): Initialize note->loop_nest. From-SVN: r154872 --- gcc/ipa-prop.c | 1 + 1 file changed, 1 insertion(+) (limited to 'gcc/ipa-prop.c') diff --git a/gcc/ipa-prop.c b/gcc/ipa-prop.c index 78269d8..9387f0e 100644 --- a/gcc/ipa-prop.c +++ b/gcc/ipa-prop.c @@ -754,6 +754,7 @@ ipa_note_param_call (struct ipa_node_params *info, int formal_id, note->lto_stmt_uid = gimple_uid (stmt); note->count = bb->count; note->frequency = compute_call_stmt_bb_frequency (current_function_decl, bb); + note->loop_nest = bb->loop_depth; note->next = info->param_calls; info->param_calls = note; -- cgit v1.1