blob: a21e869229a78ae06b4addb35c6199901d818808 [file] [log] [blame]
Shih-wei Liaof8fd82b2010-02-10 11:10:31 -08001// RUN: %clang_cc1 -triple x86_64-apple-darwin9 -emit-llvm -o %t %s
2// 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}