diff options
Diffstat (limited to 'gcc/d/d-compiler.cc')
-rw-r--r-- | gcc/d/d-compiler.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/d/d-compiler.cc b/gcc/d/d-compiler.cc index 3907d01..512ef4b 100644 --- a/gcc/d/d-compiler.cc +++ b/gcc/d/d-compiler.cc @@ -59,9 +59,9 @@ Compiler::genCmain (Scope *sc) { m->importedFrom = m; m->importAll (NULL); - m->semantic (NULL); - m->semantic2 (NULL); - m->semantic3 (NULL); + dsymbolSemantic (m, NULL); + semantic2 (m, NULL); + semantic3 (m, NULL); d_add_entrypoint_module (m, sc->_module); } |