[Frontend] Remove unused includes (NFC) (#116927)
[llvm-project.git] / llvm / test / CodeGen / SPIRV / transcoding / OpBitReverse_i2.ll
blob1840ad5411f477143d0662a38800c715ba39e499
1 ; The goal of the test case is to ensure that there's no crash
2 ; on translation of integers with bit width less than 8.
4 ; RUN: llc -O0 -mtriple=spirv64-unknown-unknown %s --spirv-ext=+SPV_KHR_bit_instructions -o - | FileCheck %s --check-prefix=CHECK-SPIRV
5 ; RUN: %if spirv-tools %{ llc -O0 -mtriple=spirv64-unknown-unknown %s --spirv-ext=+SPV_KHR_bit_instructions -o - -filetype=obj | spirv-val %}
7 ; RUN: llc -O0 -mtriple=spirv32-unknown-unknown %s --spirv-ext=+SPV_KHR_bit_instructions -o - | FileCheck %s --check-prefix=CHECK-SPIRV
8 ; RUN: %if spirv-tools %{ llc -O0 -mtriple=spirv32-unknown-unknown %s --spirv-ext=+SPV_KHR_bit_instructions -o - -filetype=obj | spirv-val %}
10 ; CHECK-SPIRV: OpCapability BitInstructions
11 ; CHECK-SPIRV: OpExtension "SPV_KHR_bit_instructions"
12 ; CHECK-SPIRV: %[[#CharTy:]] = OpTypeInt 8 0
13 ; CHECK-SPIRV-NO: %[[#CharTy:]] = OpTypeInt 8 0
14 ; CHECK-SPIRV: %[[#Arg:]] = OpFunctionParameter %[[#CharTy]]
15 ; CHECK-SPIRV: %[[#Res:]] = OpBitReverse %[[#CharTy]] %[[#Arg]]
16 ; CHECK-SPIRV: OpReturnValue %[[#Res]]
18 ; TODO: Add a check to ensure that there's no behavior change of bitreverse operation
19 ;       between the LLVM-IR and SPIR-V for i2
21 define spir_func signext i2 @foo(i2 noundef signext %a) {
22 entry:
23   %b = tail call i2 @llvm.bitreverse.i2(i2 %a)
24   ret i2 %b
27 declare i2 @llvm.bitreverse.i2(i2)