https://gcc.gnu.org/g:b51de1d00c198b6368a1e392b837ab5173680e9e
commit b51de1d00c198b6368a1e392b837ab5173680e9e Author: Mikael Morin <mik...@gcc.gnu.org> Date: Thu Mar 6 19:27:49 2025 +0100 Correction initialisation variable Diff: --- gcc/cgraphunit.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/cgraphunit.cc b/gcc/cgraphunit.cc index 526e0950e3eb..908f5e6030c5 100644 --- a/gcc/cgraphunit.cc +++ b/gcc/cgraphunit.cc @@ -6585,7 +6585,7 @@ exec_context_evaluate_tests () tree v9i = create_var (a9i, "v9i"); tree p = create_var (ptr_type_node, "p"); - vec<tree> decls9; + vec<tree> decls9 {}; decls9.safe_push (v9i); decls9.safe_push (p);