[clang-cl] Ignore /Wv and /Wv:17 flags
[llvm-project.git] / clang / test / CodeGenObjC / objc_copyStruct.m
blob7fa0ad54f3aec6319292b0f4bb822c0bd82022fd
1 // RUN: %clang -target x86_64-unknown-windows-msvc -fobjc-runtime=ios -Wno-objc-root-class -S -o - -emit-llvm %s | FileCheck %s
2 // RUN: %clang -target x86_64-apple-ios -fobjc-runtime=ios -Wno-objc-root-class -S -o - -emit-llvm %s | FileCheck %s
4 struct S {
5   float f, g;
6 };
8 @interface I
9 @property struct S s;
10 @end
12 @implementation I
13 @end
15 // CHECK: declare {{.*}}void @objc_copyStruct(i8*, i8*, i64, i1, i1)