summaryrefslogtreecommitdiffstats
path: root/clang/test/CodeGenCXX/delete.cpp
blob: 8367dd8945ae14d1f5731965e3593319720ccf41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// RUN: clang-cc %s -emit-llvm -o %t &&

void t1(int *a) {
  delete a;
}

struct S {
  int a;
};

// POD types.
void t3(S *s) {
  delete s;
}

// Non-POD
struct T {
  ~T();
  int a;
};

void t4(T *t) {
  // RUN: grep "call void @_ZN1TD1Ev" %t | count 1
  delete t;
}
OpenPOWER on IntegriCloud