This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch releases/gcc-10 in repository gcc.
from 04f9285d6ec Daily bump. new 96c4451b328 d: Fix undefined template references with circular module imports new 47254727528 d: Explicitly determine which built-in copysign function to call. new 7e6dbe4e571 d: Fix a couple of ICEs found in the dmd front-end (PR97842) new bbb887834d7 d: Fix LHS of array concatentation evaluated before the RHS.
The 4 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: gcc/d/d-codegen.cc | 5 +- gcc/d/dmd/cond.c | 4 + gcc/d/dmd/dtemplate.c | 66 ++++++++++++++- gcc/d/dmd/mtype.c | 6 ++ gcc/d/expr.cc | 3 + gcc/d/intrinsics.cc | 11 ++- gcc/testsuite/gdc.dg/pr97843.d | 37 +++++++++ .../gdc.test/compilable/imports/test21299/func.d | 8 ++ .../gdc.test/compilable/imports/test21299/mtype.d | 8 ++ .../compilable/imports/test21299/rootstringtable.d | 96 ++++++++++++++++++++++ gcc/testsuite/gdc.test/compilable/test21299a.d | 4 + gcc/testsuite/gdc.test/compilable/test21299b.d | 4 + gcc/testsuite/gdc.test/compilable/test21299c.d | 5 ++ gcc/testsuite/gdc.test/compilable/test21299d.d | 27 ++++++ .../gdc.test/fail_compilation/fail18970.d | 37 +++++++++ .../gdc.test/fail_compilation/imports/test21164a.d | 9 ++ .../gdc.test/fail_compilation/imports/test21164b.d | 4 + .../gdc.test/fail_compilation/imports/test21164c.d | 10 +++ .../gdc.test/fail_compilation/imports/test21164d.d | 9 ++ .../gdc.test/fail_compilation/test21164.d | 13 +++ 20 files changed, 358 insertions(+), 8 deletions(-) create mode 100644 gcc/testsuite/gdc.dg/pr97843.d create mode 100644 gcc/testsuite/gdc.test/compilable/imports/test21299/func.d create mode 100644 gcc/testsuite/gdc.test/compilable/imports/test21299/mtype.d create mode 100644 gcc/testsuite/gdc.test/compilable/imports/test21299/rootstringtable.d create mode 100644 gcc/testsuite/gdc.test/compilable/test21299a.d create mode 100644 gcc/testsuite/gdc.test/compilable/test21299b.d create mode 100644 gcc/testsuite/gdc.test/compilable/test21299c.d create mode 100644 gcc/testsuite/gdc.test/compilable/test21299d.d create mode 100644 gcc/testsuite/gdc.test/fail_compilation/fail18970.d create mode 100644 gcc/testsuite/gdc.test/fail_compilation/imports/test21164a.d create mode 100644 gcc/testsuite/gdc.test/fail_compilation/imports/test21164b.d create mode 100644 gcc/testsuite/gdc.test/fail_compilation/imports/test21164c.d create mode 100644 gcc/testsuite/gdc.test/fail_compilation/imports/test21164d.d create mode 100644 gcc/testsuite/gdc.test/fail_compilation/test21164.d