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] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git]
/
clang
/
test
/
CodeGen
/
blocks-aligned-byref-variable.c
blob
fc78b7fe78f352346accf16ec695a2d1fc03e01c
1
// RUN: %clang_cc1 -emit-llvm -o - -triple x86_64-apple-darwin10 -fblocks %s
2
// RUN: %clang_cc1 -emit-llvm -o - -triple i386-apple-darwin10 -fblocks %s
3
typedef
int
__attribute__
((
aligned
(
32
)))
ai
;
4
5
void
f
(
void
) {
6
__block ai a
=
10
;
7
8
^{
9
a
=
20
;
10
}();
11
}
12
13
void
g
(
void
) {
14
__block
double
a
=
10
;
15
16
^{
17
a
=
20
;
18
}();
19
}