summaryrefslogtreecommitdiffstats
path: root/test/CodeGenCXX/virtual-pseudo-destructor-call.cpp
blob: 285e3da75924740f94f7de1e4170f965c7815b1c (plain)
1
2
3
4
5
6
7
8
9
10
// RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s

struct A {
  virtual ~A();
};

void f(A *a) {
  // CHECK: call void %
  a->~A();
}
OpenPOWER on IntegriCloud