1*f4a2713aSLionel Sambuc// RUN: %clang_cc1 -rewrite-objc -fobjc-runtime=macosx-fragile-10.5 %s -o - 2*f4a2713aSLionel Sambuc 3*f4a2713aSLionel Sambuc#include <stdarg.h> 4*f4a2713aSLionel Sambuc 5*f4a2713aSLionel Sambuc@interface NSObject @end 6*f4a2713aSLionel Sambuc@interface XX : NSObject @end 7*f4a2713aSLionel Sambuc 8*f4a2713aSLionel Sambuc@implementation XX 9*f4a2713aSLionel Sambuc- (void)encodeValuesOfObjCTypes:(const char *)types, ... { 10*f4a2713aSLionel Sambuc va_list ap; 11*f4a2713aSLionel Sambuc va_start(ap, types); 12*f4a2713aSLionel Sambuc while (*types) ; 13*f4a2713aSLionel Sambuc va_end(ap); 14*f4a2713aSLionel Sambuc} 15*f4a2713aSLionel Sambuc 16*f4a2713aSLionel Sambuc@end 17*f4a2713aSLionel Sambuc 18