[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / llvm / test / CodeGen / SPIRV / transcoding / bitcast.ll
blob8dbf4d2c58b4bd9a2bc855d58e1fabda14d2e15f
1 ; RUN: llc -O0 -mtriple=spirv64-unknown-unknown %s -o - | FileCheck %s
3 ;; Check the bitcast is translated back to bitcast
5 ; CHECK: Bitcast
7 define spir_kernel void @test_fn(<2 x i8> addrspace(1)* nocapture readonly %src, i16 addrspace(1)* nocapture %dst) {
8 entry:
9   %call = tail call spir_func i64 @_Z13get_global_idj(i32 0)
10   %sext = shl i64 %call, 32
11   %idxprom = ashr exact i64 %sext, 32
12   %arrayidx = getelementptr inbounds <2 x i8>, <2 x i8> addrspace(1)* %src, i64 %idxprom
13   %0 = load <2 x i8>, <2 x i8> addrspace(1)* %arrayidx, align 2
14   %astype = bitcast <2 x i8> %0 to i16
15   %arrayidx2 = getelementptr inbounds i16, i16 addrspace(1)* %dst, i64 %idxprom
16   store i16 %astype, i16 addrspace(1)* %arrayidx2, align 2
17   ret void
20 declare spir_func i64 @_Z13get_global_idj(i32)