Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
clang
/
a6da192bbb3cb2b99200f60726b78e2d3d1f1598
/
.
/
test
/
CodeGenObjC
/
implicit-objc_msgSend.m
blob: a21e869229a78ae06b4addb35c6199901d818808 [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -triple x86_64-apple-darwin9 -emit-llvm -o %t %s
// RUN: grep -F 'declare i8* @objc_msgSend(...)' %t
typedef
struct
objc_selector
*
SEL
;
id f0
(
id x
,
SEL s
)
{
return
objc_msgSend
(
x
,
s
);
}