[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / CodeGenHLSL / group_shared.hlsl
blob48d14b2506fbc7dcac9bcdf038f6ebf637b8fcea
2 // RUN: %clang_cc1 -std=hlsl2021 -finclude-default-header -x hlsl -triple \
3 // RUN:   dxil-pc-shadermodel6.3-library %s \
4 // RUN:   -emit-llvm -disable-llvm-passes -o - | FileCheck %s
6 // Make sure groupshared translated into address space 3.
7 // CHECK:@"?a@@3PAMA" = addrspace(3) global [10 x float]
9  groupshared float a[10];
11  [numthreads(8,8,1)]
12  void main() {
13    a[0] = 1;
14  }