Re-land [openmp] Fix warnings when building on Windows with latest MSVC or Clang...
[llvm-project.git] / llvm / test / CodeGen / SPIRV / transcoding / builtin_vars.ll
blob82866712c0778840fe430f16de491d5e4d6db034
1 ; RUN: llc -O0 -mtriple=spirv32-unknown-unknown %s -o - | FileCheck %s --check-prefix=CHECK-SPIRV
3 ; CHECK-SPIRV: OpDecorate %[[#Id:]] BuiltIn GlobalLinearId
4 ; CHECK-SPIRV: %[[#Id:]] = OpVariable %[[#]]
6 @__spirv_BuiltInGlobalLinearId = external addrspace(1) global i32
8 define spir_kernel void @f(i32 addrspace(1)* nocapture %order) {
9 entry:
10   %0 = load i32, i32 addrspace(4)* addrspacecast (i32 addrspace(1)* @__spirv_BuiltInGlobalLinearId to i32 addrspace(4)*), align 4
11   ;; Need to store the result somewhere, otherwise the access to GlobalLinearId
12   ;; may be removed.
13   store i32 %0, i32 addrspace(1)* %order, align 4
14   ret void