blob: 25d0b8f66984c89a2bed3b06da7a1470e0b542fb [file] [log] [blame]
Fariborz Jahanian8604fae2009-12-14 17:13:18 +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}