[InstCombine] Preserve NSW flags for `lshr (mul nuw X, C1), C2 -> mul nuw nsw X,...
[llvm-project.git] / clang / test / SemaObjC / va-method-1.m
blob4959df31990f64f014b87539b1b18ef9cd949171
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
2 // expected-no-diagnostics
4 #include <stdarg.h>
6 @interface NSObject @end
7 @interface XX : NSObject @end
9 @implementation XX
10 - (void)encodeValuesOfObjCTypes:(const char *)types, ... {
11    va_list ap;
12    va_start(ap, types); 
13    while (*types) ;
14    va_end(ap);
17 @end