diff options
Diffstat (limited to 'gcc/tree-inline.c')
-rw-r--r-- | gcc/tree-inline.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/tree-inline.c b/gcc/tree-inline.c index 42e4597..4311309 100644 --- a/gcc/tree-inline.c +++ b/gcc/tree-inline.c @@ -2804,15 +2804,15 @@ maybe_move_debug_stmts_to_successors (copy_body_data *id, basic_block new_bb) static void copy_loops (copy_body_data *id, - struct loop *dest_parent, struct loop *src_parent) + class loop *dest_parent, class loop *src_parent) { - struct loop *src_loop = src_parent->inner; + class loop *src_loop = src_parent->inner; while (src_loop) { if (!id->blocks_to_copy || bitmap_bit_p (id->blocks_to_copy, src_loop->header->index)) { - struct loop *dest_loop = alloc_loop (); + class loop *dest_loop = alloc_loop (); /* Assign the new loop its header and latch and associate those with the new loop. */ |