diff options
Diffstat (limited to 'gcc/lto-streamer-out.c')
-rw-r--r-- | gcc/lto-streamer-out.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/lto-streamer-out.c b/gcc/lto-streamer-out.c index 49ca5ce..35dcae4 100644 --- a/gcc/lto-streamer-out.c +++ b/gcc/lto-streamer-out.c @@ -1911,7 +1911,7 @@ output_cfg (struct output_block *ob, struct function *fn) /* Output each loop, skipping the tree root which has number zero. */ for (unsigned i = 1; i < number_of_loops (fn); ++i) { - struct loop *loop = get_loop (fn, i); + class loop *loop = get_loop (fn, i); /* Write the index of the loop header. That's enough to rebuild the loop tree on the reader side. Stream -1 for an unused |