Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
25c92e6c2936c279a58b41479e70806dbdeb0cdd
/
.
/
test
/
CodeGenObjC
/
blocks-2.m
blob: 15160cc52b0631452a8f074d65abf21b217c7f3c [
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
;
}