https://gcc.gnu.org/g:aeec67f4cb2b7291c79b4a9bb81fb26de954ff87

commit aeec67f4cb2b7291c79b4a9bb81fb26de954ff87
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 3855342e63d7..72c19d2a2d04 100644
--- a/gcc/cgraphunit.cc
+++ b/gcc/cgraphunit.cc
@@ -6584,7 +6584,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);

Reply via email to