13 lines · cpp
1// RUN: %clang_cc1 %s -std=c++14 -triple=spir -emit-llvm -o - | FileCheck %s2// RUN: %clang_cc1 %s -std=c++17 -triple=spir -emit-llvm -o - | FileCheck %s3// XFAIL: *4 5// FIXME: We can't compile address space method qualifiers yet.6// Therefore there is no way to check correctness of this code.7struct MyType {8 MyType(int i) __attribute__((address_space(10))) : i(i) {}9 int i;10};11//CHECK: call void @_ZN6MyTypeC1Ei(ptr addrspacecast (ptr addrspace(10) @m to ptr), i32 123)12MyType __attribute__((address_space(10))) m = 123;13