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
[clang][lex] NFCI: Use DirectoryEntryRef in ModuleMap::inferFrameworkModule()
[llvm-project.git]
/
clang
/
test
/
CodeGenObjCXX
/
crash-function-type.mm
blob
53acc58dfc44d8b964a01ae23bb3f793cb78add7
1
// RUN: %clang_cc1 -fblocks -fsanitize=function -emit-llvm %s -o %t
2
3
void g(void (^)());
4
void f() {
5
__block int a = 0;
6
g(^() {
7
a++;
8
});
9
}