[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / llvm / test / CodeGen / Hexagon / fusedandshift.ll
blobe7c48249bf05962dfe043c56fc8fcf41b75c6e50
1 ; RUN: llc -march=hexagon -hexagon-extract=0 -hexbit-extract=0 < %s | FileCheck %s
2 ; Check that we generate fused logical and with shift instruction.
3 ; Disable "extract" generation, since it may eliminate the and/lsr.
5 ; CHECK: r{{[0-9]+}} = and(#15,lsr(r{{[0-9]+}},#{{[0-9]+}})
7 define i32 @main(ptr %a, ptr %b) nounwind {
8   entry:
9   %0 = load i16, ptr %a, align 2
10   %conv1 = sext i16 %0 to i32
11   %shr1 = ashr i32 %conv1, 3
12   %and1 = and i32 %shr1, 15
13   %conv2 = trunc i32 %and1 to i16
14   store i16 %conv2, ptr %b, align 2
15   ret i32 0