Home | History | Annotate | Download | only in CodeGenCXX
      1 // RUN: %clang_cc1 -triple %itanium_abi_triple -emit-llvm %s -o - | FileCheck %s
      2 // CHECK: @_ZTI3foo = constant
      3 class foo {
      4    foo();
      5    virtual ~foo();
      6 };
      7 
      8 foo::~foo() {
      9 }
     10