blob: 18a7798481e9ca24d7d4c9c643f1714983431738 [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) {
8 // CHECK: call void @_ZN1N4freeEPv
9 void *fp __attribute__((cleanup(N::free)));
10 return 0;
11}