blob: a21e869229a78ae06b4addb35c6199901d818808 [file] [log] [blame]
Daniel Dunbar8fbe78f2009-12-15 20:14:24 +00001// RUN: %clang_cc1 -triple x86_64-apple-darwin9 -emit-llvm -o %t %s
Fariborz Jahanian3655e592010-11-09 02:24:08 +00002// RUN: grep -F 'declare i8* @objc_msgSend(...)' %t
Daniel Dunbar46457072009-04-23 07:00:09 +00003
4typedef struct objc_selector *SEL;
5id f0(id x, SEL s) {
6 return objc_msgSend(x, s);
7}