blob: f2fba58f4b57923a7b86bfeed48ae01d86a21f45 [file] [log] [blame]
Daniel Dunbar4fcfde42009-11-08 01:45:36 +00001// RUN: clang-cc -triple x86_64-apple-darwin9 -emit-llvm -o %t %s
Daniel Dunbar9396dcf2009-04-23 07:00:09 +00002// RUN: grep -F 'declare i8* @objc_msgSend(...)' %t
3
4typedef struct objc_selector *SEL;
5id f0(id x, SEL s) {
6 return objc_msgSend(x, s);
7}