llvm/test/CodeGen/AArch64/tailcall_misched_graph.ll: s/REQUIRE/REQUIRES/
[oota-llvm.git] / test / CodeGen / Hexagon / struct_args.ll
1 ; RUN: llc -march=hexagon -mcpu=hexagonv4 < %s | FileCheck %s
2 ; CHECK: r{{[0-9]}}:{{[0-9]}} = combine({{r[0-9]|#0}}, r{{[0-9]}})
3 ; CHECK: r{{[0-9]}}:{{[0-9]}} |= asl(r{{[0-9]}}:{{[0-9]}}, #32)
4
5 %struct.small = type { i32, i32 }
6
7 @s1 = common global %struct.small zeroinitializer, align 4
8
9 define void @foo() nounwind {
10 entry:
11   %0 = load i64, i64* bitcast (%struct.small* @s1 to i64*), align 1
12   call void @bar(i64 %0)
13   ret void
14 }
15
16 declare void @bar(i64)