brintos

brintos / llvm-project-archived public Read only

0
0
Text · 291 B · 0310465 Raw
12 lines · cpp
1// RUN: %clang_cc1 -triple %itanium_abi_triple -emit-llvm -o - %s | FileCheck %s2 3struct D;4struct B {5 virtual D& operator = (const D&);6};7struct D : B { D(); virtual void a(); };8void D::a() {}9 10// CHECK: @_ZTV1D = {{.*}} @_ZN1DaSERKS_ 11// CHECK: define linkonce_odr {{.*}} @_ZN1DaSERKS_12