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
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