attr-cleanup.cpp revision a3bfa54f2ad8600fc1bb3d39b37e3cd5469ccbb6
1// RUN: %clang_cc1 -emit-llvm -o - %s | FileCheck %s
2
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}
12