Excerpts from Rainer Orth's message of Oktober 30, 2023 5:37 pm: > Hi Iain, > >> This patch merges the D front-end and runtime library with upstream dmd >> e48bc0987d, and standard library with phobos 2458e8f82. >> >> Synchronizing with the v2.106.0-beta.1 release. >> >> D front-end changes: >> >> - Import dmd v2.106.0-beta.1. > > this patch broke D bootstrap, it seems: > > /vol/gcc/src/hg/master/local/gcc/d/expr.cc: In member function 'virtual void > ExprVisitor::visit(NewExp*)': > /vol/gcc/src/hg/master/local/gcc/d/expr.cc:2361:21: error: unused variable > 'tarray' [-Werror=unused-variable] > 2361 | TypeDArray *tarray = tb->isTypeDArray (); > | ^~~~~~ > > It removed the uses of tarray, but kept the initialization. >
Hi Rainer, Thanks for spotting, I'll fix it up. Iain.