blob: a21e869229a78ae06b4addb35c6199901d818808 [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -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}