c++: Adjust pushdecl/duplicate_decls API
[gcc.git] / gcc / context.c
index 76e0dde9c0fabcad06499ed7c745ec7040b67be5..0ec49d885c0d97946380312caf86040ea709b2f8 100644 (file)
@@ -1,5 +1,5 @@
 /* context.c - Holder for global state
-   Copyright (C) 2013 Free Software Foundation, Inc.
+   Copyright (C) 2013-2020 Free Software Foundation, Inc.
 
 This file is part of GCC.
 
@@ -20,8 +20,25 @@ along with GCC; see the file COPYING3.  If not see
 #include "config.h"
 #include "system.h"
 #include "coretypes.h"
-#include "ggc.h"
 #include "context.h"
+#include "pass_manager.h"
+#include "dumpfile.h"
+#include "realmpfr.h"
 
 /* The singleton holder of global state: */
 gcc::context *g;
+
+gcc::context::context ()
+  : m_passes (NULL), m_dumps (new gcc::dump_manager ())
+{
+  have_offload = false;
+}
+
+gcc::context::~context ()
+{
+  delete m_passes;
+  delete m_dumps;
+
+  /* Release MPFR caches to avoid Valgrind leak reports.  */
+  mpfr_free_cache ();
+}