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 | |||||
4 | ; CHECK: r{{[0-9]+}} += mpyi(r{{[0-9]+}}, r{{[0-9]+}}) | ||||
5 | |||||
6 | define i32 @main(i32* %a, i32* %b) nounwind { | ||||
7 | entry: | ||||
8 | %0 = load i32* %a, align 4 | ||||
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 |