[clang-cl] Ignore /Wv and /Wv:17 flags
[llvm-project.git] / clang / test / Sema / pragma-weak.c
blobc14125eac9f7cbd17329ced19db889ac76a6703d
1 // RUN: %clang_cc1 -triple x86_64-pc-linux-gnu -fsyntax-only -verify %s
3 void __both3(void);
4 #pragma weak both3 = __both3 // expected-note {{previous definition}}
5 void both3(void) __attribute((alias("__both3"))); // expected-error {{redefinition of 'both3'}}
6 void __both3(void) {}
8 void __a3(void) __attribute((noinline));
9 #pragma weak a3 = __a3 // expected-note {{previous definition}}
10 void a3(void) __attribute((alias("__a3"))); // expected-error {{redefinition of 'a3'}}
11 void __a3(void) {}