diff options
Diffstat (limited to 'gcc/cfghooks.c')
-rw-r--r-- | gcc/cfghooks.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/cfghooks.c b/gcc/cfghooks.c index 89df3e54ea3..50aca9f1b69 100644 --- a/gcc/cfghooks.c +++ b/gcc/cfghooks.c @@ -939,14 +939,14 @@ bool cfg_hook_duplicate_loop_to_header_edge (struct loop *loop, edge e, unsigned int ndupl, sbitmap wont_exit, edge orig, - edge *to_remove, - unsigned int *n_to_remove, int flags) + VEC (edge, heap) **to_remove, + int flags) { gcc_assert (cfg_hooks->cfg_hook_duplicate_loop_to_header_edge); return cfg_hooks->cfg_hook_duplicate_loop_to_header_edge (loop, e, ndupl, wont_exit, orig, to_remove, - n_to_remove, flags); + flags); } /* Conditional jumps are represented differently in trees and RTL, |