repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git]
/
clang
/
test
/
SemaObjC
/
attr-cleanup.m
blob
9ee02bfab5a2a844de5434eddfbbafe0f23f4f46
1
// RUN: %clang_cc1 %s -verify -fsyntax-only
2
// expected-no-diagnostics
3
4
@class NSString;
5
6
void c1(id *a);
7
8
void t1(void)
9
{
10
NSString *s __attribute((cleanup(c1)));
11
}