[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / test / CodeGen / Hexagon / postinc-load.ll
blob825e16976a53d8a67af444d6a664e9777deecca6
1 ; RUN: llc -march=hexagon < %s | FileCheck %s
3 ; Check that post-increment load instructions are being generated.
4 ; CHECK: r{{[0-9]+}} = memw(r{{[0-9]+}}++#4)
6 define i32 @f0(i32* nocapture %a0, i16* nocapture %a1, i32 %a2) #0 {
7 b0:
8   br label %b1
10 b1:                                               ; preds = %b1, %b0
11   %v0 = phi i32 [ %v11, %b1 ], [ 10, %b0 ]
12   %v1 = phi i32* [ %a0, %b0 ], [ %v9, %b1 ]
13   %v2 = phi i16* [ %a1, %b0 ], [ %v10, %b1 ]
14   %v3 = phi i32 [ 0, %b0 ], [ %v8, %b1 ]
15   %v4 = load i32, i32* %v1, align 4
16   %v5 = load i16, i16* %v2, align 2
17   %v6 = sext i16 %v5 to i32
18   %v7 = add i32 %v4, %v3
19   %v8 = add i32 %v7, %v6
20   %v9 = getelementptr i32, i32* %v1, i32 1
21   %v10 = getelementptr i16, i16* %v2, i32 1
22   %v11 = add i32 %v0, -1
23   %v12 = icmp eq i32 %v11, 0
24   br i1 %v12, label %b2, label %b1
26 b2:                                               ; preds = %b1
27   ret i32 %v8
30 attributes #0 = { nounwind "target-cpu"="hexagonv5" }