[clang-cl] Ignore /Wv and /Wv:17 flags
[llvm-project.git] / clang / test / CodeGenCXX / address-space-of-this.cpp
blobcfa3da09596fed31443c1c2f3adb9a3b476077d4
1 // RUN: %clang_cc1 %s -std=c++14 -triple=spir -emit-llvm -o - | FileCheck %s
2 // RUN: %clang_cc1 %s -std=c++17 -triple=spir -emit-llvm -o - | FileCheck %s
3 // XFAIL: *
5 // FIXME: We can't compile address space method qualifiers yet.
6 // Therefore there is no way to check correctness of this code.
7 struct MyType {
8 MyType(int i) __attribute__((address_space(10))) : i(i) {}
9 int i;
11 //CHECK: call void @_ZN6MyTypeC1Ei(%struct.MyType* addrspacecast (%struct.MyType addrspace(10)* @m to %struct.MyType*), i32 123)
12 MyType __attribute__((address_space(10))) m = 123;