repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[clang] Handle __declspec() attributes in using
[llvm-project.git]
/
clang
/
test
/
CodeGenCXX
/
block-destruct.cpp
blob
f809ca2699dea98afd9c87657cb5f35569570bec
1
// RUN: %clang_cc1 %s -fblocks -triple x86_64-apple-darwin -emit-llvm -o - | FileCheck %s
2
3
struct
A
{ ~
A
(); };
4
5
void
f
() {
6
__block A a
;
7
}
8
9
// CHECK: call void @_ZN1AD1Ev