Home | History | Annotate | Download | only in Hexagon
      1 ; RUN: llc -march=hexagon < %s | FileCheck %s
      2 ; CHECK-DAG: r5:4 = combine(#6,#5)
      3 ; CHECK-DAG: r3:2 = combine(#4,#3)
      4 ; CHECK-DAG: r1:0 = combine(#2,#1)
      5 ; CHECK: memw(r29+#0) = #7
      6 
      7 
      8 define void @foo() nounwind {
      9 entry:
     10   call void @bar(i32 1, i32 2, i32 3, i32 4, i32 5, i32 6, i32 7)
     11   ret void
     12 }
     13 
     14 declare void @bar(i32, i32, i32, i32, i32, i32, i32)
     15