Home | History | Annotate | Download | only in CodeGenObjC
      1 // RUN: %clang_cc1 -triple x86_64-apple-darwin9 -emit-llvm -o %t %s
      2 // RUN: grep -F 'declare i8* @objc_msgSend(i8*, i8*, ...)' %t
      3 
      4 typedef struct objc_selector *SEL;
      5 id f0(id x, SEL s) {
      6   return objc_msgSend(x, s);
      7 }
      8