From 7bcbd7ba3a426931d327dfe5436016d28774549d Mon Sep 17 00:00:00 2001 From: David Malcolm Date: Thu, 30 Apr 2020 16:54:53 -0400 Subject: [PATCH 096/179] FIXME: fix missing initialization in region_model2::update_for_return_superedge --- gcc/analyzer/region-model2.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/analyzer/region-model2.cc b/gcc/analyzer/region-model2.cc index ccbea2468e5..e597c033716 100644 --- a/gcc/analyzer/region-model2.cc +++ b/gcc/analyzer/region-model2.cc @@ -5813,7 +5813,7 @@ region_model2::update_for_return_superedge (const return_superedge &return_edge, region_model2_context *ctxt) { /* Get the region2 for the result of the call, within the caller frame. */ - region2 *result_dst_reg; + region2 *result_dst_reg = NULL; const gcall *call_stmt = return_edge.get_call_stmt (); tree lhs = gimple_call_lhs (call_stmt); if (lhs) -- 2.21.0