[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / llvm / test / CodeGen / SPIRV / transcoding / OpBitReverse_i32.ll
blobf396b5a01ae91c167a22f58812e229ef430b08a0
1 ; RUN: llc -O0 -mtriple=spirv32-unknown-unknown %s -o - | FileCheck %s --check-prefix=CHECK-SPIRV
3 ; CHECK-SPIRV: %[[#int:]] = OpTypeInt 32
4 ; CHECK-SPIRV: OpBitReverse %[[#int]]
6 define spir_kernel void @testBitRev(i32 %a, i32 %b, i32 %c, i32 addrspace(1)* nocapture %res) local_unnamed_addr {
7 entry:
8   %call = tail call i32 @llvm.bitreverse.i32(i32 %b)
9   store i32 %call, i32 addrspace(1)* %res, align 4
10   ret void
13 declare i32 @llvm.bitreverse.i32(i32)