[clang-cl] Ignore /Wv and /Wv:17 flags
[llvm-project.git] / clang / test / CodeGenObjC / attr-minsize.m
blobf46107eca61e5bafe6e73121d506d0f7d061d363
1 // RUN: %clang_cc1 -emit-llvm -o - %s | FileCheck %s
3 @interface Test
4 - (void)test;
5 @end
7 @implementation Test
8 - (void)test __attribute__((minsize)) {
9     // CHECK: define{{.*}}Test test
10     // CHECK: minsize
12 @end