Sirish Pande | f8e5e3c | 2012-05-03 21:52:53 +0000 | [diff] [blame] | 1 | ; RUN: llc -march=hexagon -mcpu=hexagonv4 < %s | FileCheck %s |
| 2 | ; Check that we generate integer multiply accumulate. |
| 3 | |
Krzysztof Parzyszek | 952d951 | 2015-04-22 21:17:00 +0000 | [diff] [blame] | 4 | ; CHECK: r{{[0-9]+}} {{\+|\-}}= mpyi(r{{[0-9]+}}, |
Sirish Pande | f8e5e3c | 2012-05-03 21:52:53 +0000 | [diff] [blame] | 5 | |
| 6 | define i32 @main(i32* %a, i32* %b) nounwind { |
| 7 | entry: |
David Blaikie | a79ac14 | 2015-02-27 21:17:42 +0000 | [diff] [blame] | 8 | %0 = load i32, i32* %a, align 4 |
Sirish Pande | f8e5e3c | 2012-05-03 21:52:53 +0000 | [diff] [blame] | 9 | %div = udiv i32 %0, 10000 |
| 10 | %rem = urem i32 %div, 10 |
| 11 | store i32 %rem, i32* %b, align 4 |
| 12 | ret i32 0 |
| 13 | } |
| 14 | |