Home | History | Annotate | Download | only in CodeGenCXX
      1 // RUN: %clang_cc1 %s -triple %itanium_abi_triple -g -S -emit-llvm -o - | FileCheck %s
      2 
      3 struct A {
      4   virtual void f();
      5 };
      6 
      7 struct B {
      8   virtual void f();
      9 };
     10 
     11 struct C : A, B {
     12   virtual void f();
     13 };
     14 
     15 void C::f() { }
     16 
     17 // CHECK: metadata !"_ZThn{{4|8}}_N1C1fEv", i32 15, {{.*}} ; [ DW_TAG_subprogram ] [line 15] [def]{{$}}
     18