diff options
Diffstat (limited to 'gcc/cfgrtl.c')
-rw-r--r-- | gcc/cfgrtl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cfgrtl.c b/gcc/cfgrtl.c index abdbf9d..bf61737 100644 --- a/gcc/cfgrtl.c +++ b/gcc/cfgrtl.c @@ -3080,7 +3080,7 @@ void init_rtl_bb_info (basic_block bb) { gcc_assert (!bb->il.rtl); - bb->il.rtl = GGC_CNEW (struct rtl_bb_info); + bb->il.rtl = ggc_alloc_cleared_rtl_bb_info (); } |