From d2722fe0776c3b8e0d546fa5cdf8ac3ed8fe7a2d Mon Sep 17 00:00:00 2001 From: David Malcolm Date: Fri, 15 May 2020 14:06:14 -0400 Subject: [PATCH 139/179] FIXME: fix __analyzer_dump to use the correct state --- gcc/analyzer/engine.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/analyzer/engine.cc b/gcc/analyzer/engine.cc index 524a79f9649..a7eacd048d6 100644 --- a/gcc/analyzer/engine.cc +++ b/gcc/analyzer/engine.cc @@ -1677,7 +1677,7 @@ exploded_node::on_stmt2 (exploded_graph &eg, { /* Handle the builtin "__analyzer_dump" by dumping state to stderr. */ - dump (eg.get_ext_state ()); + state->dump (eg.get_ext_state (), true); } else if (is_special_named_call_p (call, "__analyzer_dump_path", 0)) { -- 2.21.0