Colin LeMahieu | be8c453 | 2015-06-05 16:00:11 +0000 | [diff] [blame] | 1 | ; RUN: llc -march=hexagon < %s | FileCheck %s |
Krzysztof Parzyszek | a72fad9 | 2017-02-10 15:33:13 +0000 | [diff] [blame] | 2 | ; CHECK: r5:4 = combine(#6,#5) |
| 3 | ; CHECK: r3:2 = combine(#4,#3) |
| 4 | ; CHECK: r1:0 = combine(#2,#1) |
| 5 | ; CHECK: memw(r29+#0) = #7 |
Tony Linthicum | 1213a7a | 2011-12-12 21:14:40 +0000 | [diff] [blame] | 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) |