llvm/test/CodeGen/AArch64/tailcall_misched_graph.ll: s/REQUIRE/REQUIRES/
[oota-llvm.git] / test / CodeGen / Hexagon / macint.ll
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]+}},
5
6 define i32 @main(i32* %a, i32* %b) nounwind {
7   entry:
8   %0 = load i32, 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