d: Remove Wtemplates warnings from the code generation pass
authorIain Buclaw <ibuclaw@gdcproject.org>
Sun, 3 Apr 2022 12:40:34 +0000 (14:40 +0200)
committerIain Buclaw <ibuclaw@gdcproject.org>
Sun, 3 Apr 2022 13:16:39 +0000 (15:16 +0200)
These have been superceded by the front-end's own internal tracking of
instantiations, exposed by `-ftransition=templates'.

gcc/d/ChangeLog:

* d-lang.cc: Include dmd/template.h.
(d_parse_file): Call printTemplateStats when vtemplates is set.
* decl.cc (start_function): Remove OPT_Wtemplates warning.
* lang.opt (Wtemplates): Remove.

gcc/d/d-lang.cc
gcc/d/decl.cc
gcc/d/lang.opt

index 4a7aa89..6957162 100644 (file)
@@ -33,6 +33,7 @@ along with GCC; see the file COPYING3.  If not see
 #include "dmd/module.h"
 #include "dmd/mtype.h"
 #include "dmd/target.h"
+#include "dmd/template.h"
 
 #include "opts.h"
 #include "alias.h"
@@ -1306,6 +1307,9 @@ d_parse_file (void)
        }
     }
 
+  if (global.params.vtemplates)
+    printTemplateStats ();
+
   /* Generate JSON files.  */
   if (global.params.doJsonGeneration)
     {
index ea8baef..86ea176 100644 (file)
@@ -1891,16 +1891,7 @@ start_function (FuncDeclaration *fd)
      modules not in this compilation, or thunk aliases.  */
   TemplateInstance *ti = fd->isInstantiated ();
   if (ti && ti->needsCodegen ())
-    {
-      /* Warn about templates instantiated in this compilation.  */
-      if (ti == fd->parent)
-       {
-         warning (OPT_Wtemplates, "%s %qs instantiated",
-                  ti->kind (), ti->toPrettyChars (false));
-       }
-
-      DECL_EXTERNAL (fndecl) = 0;
-    }
+    DECL_EXTERNAL (fndecl) = 0;
   else
     {
       Module *md = fd->getModule ();
index 7859e15..51e8e5c 100644 (file)
@@ -138,10 +138,6 @@ Wspeculative
 D
 Warn from speculative compiles such as __traits(compiles).
 
-Wtemplates
-D
-; Documented in C
-
 Wunknown-pragmas
 D Var(warn_unknown_pragmas) LangEnabledBy(D, Wextra)
 ; Documented in C