On Sat, 12 Mar 2022 12:32:38 GMT, Andrew Haley <a...@openjdk.org> wrote:
> > into the assembler sources and use > > ```c++ > > extern char address_of_label[] __attribute__ ((visibility > > ("hidden"))); > > ``` > > ITYM > > ``` > extern "C" char address_of_label[] __attribute__ ((visibility ("hidden"))); It doesn't hurt, but the Itanium ABI does not mangle such global data symbols, so it's not strictly needed. ------------- PR: https://git.openjdk.java.net/jdk/pull/7727