Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
337cba4b3e17b98cfa512dfd12e57f4ccb0859be
/
.
/
test
/
CodeGenObjC
/
blocks-2.m
blob: 4949b45cddeee008d0ad91818568c3302ca02600 [
file
] [
log
] [
blame
]
// RUN: clang -cc1 %s -emit-llvm -o %t -fobjc-gc -fblocks -triple i386-apple-darwin10
// RUN: grep "objc_assign_strongCast" %t | count 2
// This should generate a strong cast.
id test3
(
id x
)
{
__block id result
;
^{
result
=
x
;
}();
return
result
;
}