view gcc/testsuite/g++.dg/lto/pr92476_0.C @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 1830386684a0
children
line wrap: on
line source

// { dg-lto-do link }
// { dg-lto-options { { -O0 -flto -shared -fPIC -fvisibility=hidden } } }
// { dg-require-effective-target fpic }
// { dg-require-effective-target shared }
// { dg-extra-ld-options "-shared" }

namespace Passenger {
namespace Json {
class Value {};
} // namespace Json
namespace ConfigKit {
class Translator {};
} // namespace ConfigKit
namespace LoggingKit {
void initialize(const Json::Value & = Json::Value(),
                const ConfigKit::Translator & = ConfigKit::Translator());
void init_module() { initialize(); }
} // namespace LoggingKit
} // namespace Passenger