blob: 5ece41a299477e1f7d2b1f57fc4db7bdaa2edbc8 [file] [log] [blame]
Hans Wennborgc9bd88e2014-01-14 19:35:09 +00001// RUN: %clang_cc1 -emit-llvm -triple %itanium_abi_triple -o - %s | FileCheck %s
Alp Tokere11bd862013-10-20 19:04:19 +00002
3namespace N {
4 void free(void *i) {}
5}
6
7int main(void) {
David Blaikieea3e51d2015-06-29 17:29:50 +00008 // CHECK: call {{.*}}void @_ZN1N4freeEPv
Alp Tokere11bd862013-10-20 19:04:19 +00009 void *fp __attribute__((cleanup(N::free)));
10 return 0;
11}