[NFC][Py Reformat] Reformat python files in llvm
[llvm-project.git] / llvm / test / CodeGen / Hexagon / combine_ir.ll
blob73d1eaef3369986b547c7309d3b1027b8fbc4537
1 ; RUN: llc -march=hexagon -disable-hsdr < %s | FileCheck %s
3 declare void @bar(i64)
5 ; CHECK-LABEL: halfword:
6 ; CHECK: combine(#0
8 define void @halfword(ptr nocapture %a) nounwind {
9 entry:
10   %0 = load i16, ptr %a, align 2
11   %1 = zext i16 %0 to i64
12   %add.ptr = getelementptr inbounds i16, ptr %a, i32 1
13   %2 = load i16, ptr %add.ptr, align 2
14   %3 = zext i16 %2 to i64
15   %4 = shl nuw nsw i64 %3, 16
16   %ins = or i64 %4, %1
17   tail call void @bar(i64 %ins) nounwind
18   ret void
21 ; CHECK-LABEL: byte:
22 ; CHECK: combine(#0
24 define void @byte(ptr nocapture %a) nounwind {
25 entry:
26   %0 = load i8, ptr %a, align 1
27   %1 = zext i8 %0 to i64
28   %add.ptr = getelementptr inbounds i8, ptr %a, i32 1
29   %2 = load i8, ptr %add.ptr, align 1
30   %3 = zext i8 %2 to i64
31   %4 = shl nuw nsw i64 %3, 8
32   %ins = or i64 %4, %1
33   tail call void @bar(i64 %ins) nounwind
34   ret void