blob: e3a59f813c57f0f8b73e46400d425e0ee2c26c78 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// RUN: %clang_cc1 -triple i386-pc-win32 %s -fsyntax-only -verify -fms-extensions -Wno-microsoft -std=c++11
// RUN: %clang_cc1 %s -fsyntax-only -verify -fms-extensions -Wno-microsoft \
// RUN: -std=c++11 -aux-triple x86_64-pc-win32 -fcuda-is-device -xhip \
// RUN: -triple amdgcn-amd-amdhsa -target-cpu gfx1200
// RUN: %clang_cc1 %s -fsyntax-only -verify -fms-extensions -Wno-microsoft \
// RUN: -std=c++11 -aux-triple x86_64-pc-win32 -fcuda-is-device -xhip \
// RUN: -triple spirv64-amd-amdhsa
// RUN: %clang_cc1 %s -fsyntax-only -verify -fms-extensions -Wno-microsoft \
// RUN: -std=c++11 -aux-triple x86_64-pc-win32 -fcuda-is-device -xcuda \
// RUN: -triple nvptx64
struct __declspec(layout_version(19)) S {};
enum __declspec(layout_version(19)) E {}; // expected-warning{{'layout_version' attribute only applies to classes}}
int __declspec(layout_version(19)) I; // expected-warning{{'layout_version' attribute only applies to classes}}
typedef struct T __declspec(layout_version(19)) U; // expected-warning{{'layout_version' attribute only applies to classes}}
auto z = []() __declspec(layout_version(19)) { return nullptr; }; // expected-warning{{'layout_version' attribute only applies to classes}}
struct __declspec(layout_version(18)) X {}; // expected-error{{'layout_version' attribute parameter 18 is out of bounds}}
struct __declspec(layout_version(20)) Y {}; // expected-error{{'layout_version' attribute parameter 20 is out of bounds}}
struct __declspec(layout_version) Z {}; // expected-error{{attribute takes one argument}}
|