Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
083128f6b13dfa4fc615a838c49b516d901b1ac0
/
.
/
test
/
CodeGenObjC
/
blocks-2.m
blob: bb7af99416f35d2e47b32a56a0dd29147a983312 [
file
] [
log
] [
blame
]
// RUN: clang-cc %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
;
}