https://gcc.gnu.org/bugzilla/show_bug.cgi?id=117837
Andrew Pinski <pinskia at gcc dot gnu.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|ICE: verify_cgraph_node |ICE: verify_cgraph_node
|failed |failed with weakref to
| |comdat function
--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Reduced testcase:
```
struct A {
A() {}
};
static void ref_to_A(void) __attribute__((weakref("_ZN1AC2Ev")));
bool t = ref_to_A ? 1 : 0;
```