1f51a89d39
These were ignored by git accidentally. We want ALL OF THEM since they all came in the llvm/clang source distribution.
9 lines
140 B
C
9 lines
140 B
C
// RUN: %clang_cc1 -emit-llvm %s -o %t
|
|
|
|
// <rdar://problem/6827047>
|
|
void f(void* arg);
|
|
void g() {
|
|
__attribute__((cleanup(f))) void *g;
|
|
}
|
|
|