[NFC][RemoveDIs] Prefer iterators over inst-pointers in InstCombine
[llvm-project.git] / llvm / test / CodeGen / Hexagon / ashift-left-right.ll
blobbc3e813220dbb075be04e4e6396b5e2b86586868
1 ; RUN: llc -march=hexagon < %s | FileCheck %s
3 define i32 @foo(i32 %a, i32 %b) nounwind readnone {
4 ; CHECK: lsl
5 ; CHECK: aslh
6 entry:
7   %shl1 = shl i32 16, %a
8   %shl2 = shl i32 %b, 16
9   %ret = mul i32 %shl1, %shl2
10   ret i32 %ret
13 define i32 @bar(i32 %a, i32 %b) nounwind readnone {
14 ; CHECK: asrh
15 ; CHECK: lsr
16 entry:
17   %shl1 = ashr i32 16, %a
18   %shl2 = ashr i32 %b, 16
19   %ret = mul i32 %shl1, %shl2
20   ret i32 %ret