[PowerPC] Collect some CallLowering arguments into a struct. [NFC]
[llvm-project.git] / clang / test / SemaObjC / builtin_objc_nslog.m
blobcc6f194c898de68b89c85a3bfb7b0c15f40d2808
1 // RUN: %clang_cc1 -x objective-c %s -fsyntax-only -verify
3 #include <stdarg.h>
5 void f1(id arg) {
6   NSLog(@"%@", arg); // expected-warning {{implicitly declaring library function 'NSLog' with type 'void (id, ...)'}} \
7   // expected-note {{include the header <Foundation/NSObjCRuntime.h> or explicitly provide a declaration for 'NSLog'}}
10 void f2(id str, va_list args) {
11   NSLogv(@"%@", args); // expected-warning {{implicitly declaring library function 'NSLogv' with type }} \
12   // expected-note {{include the header <Foundation/NSObjCRuntime.h> or explicitly provide a declaration for 'NSLogv'}}