gcc-9-20200201 is now available

2020-02-01 Thread gccadmin
Snapshot gcc-9-20200201 is now available on https://gcc.gnu.org/pub/gcc/snapshots/9-20200201/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 9 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch

Feature request for "friendship" of pointers in "C"

2020-02-01 Thread aotto
Hi, the following scenario has a "definition hole" in the "C" language code example: - struct base {   ... }; struct A {   struct base obj;   ... } aObj; struct B {   struct base obj;   ... } bObj; void method_base (struct base * hdl, ...); method_base(&aObj, ...) met