blob: 1314f5c5f75a845d64a539e2b5af38e876b218df [file] [log] [blame]
// PR c++/26905
// Init should not be hidden, so calling it should use the PLT.
// { dg-options "-fpic" }
// APPLE LOCAL axe stubs 5571540
// { dg-do compile { target i?86-*-* x86_64-*-* } }
// APPLE LOCAL axe stubs 5571540
// { dg-skip-if "" { *-*-darwin* } { "*" } { "" } }
// { dg-require-visibility "" }
// APPLE LOCAL axe stubs 5571540
// { dg-final { scan-assembler "InitEv@PLT" } }
#pragma GCC visibility push(hidden)
struct __attribute__ ((visibility ("default"))) nsINIParser
{
static void Init();
};
__attribute__ ((visibility ("default")))
void
CheckCompatibility(void)
{
nsINIParser::Init();
}