blob: 0560d74ac749df185a253e08c620f182e3b68b9c [file] [edit]
// RUN: %clang_cc1 -triple x86_64-linux-unknown -fvisibility=hidden -emit-llvm %s -o - | FileCheck %s
struct Base {};
class Parent1 : virtual public Base {};
class Parent2 : virtual public Base {};
class Child : public Parent1, public Parent2 {};
void test() {
Child x;
}
// CHECK: @_ZTC5Child0_7Parent1 = linkonce_odr hidden constant
// CHECK: @_ZTC5Child8_7Parent2 = linkonce_odr hidden constant