You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
389 B
16 lines
389 B
; RUN: llc -march=hexagon < %s | FileCheck %s
|
|
; Check that we generate integer multiply accumulate.
|
|
|
|
; CHECK: r{{[0-9]+}} {{\+|\-}}= mpyi(r{{[0-9]+}},
|
|
|
|
define i32 @f0(i32* %a0, i32* %a1) #0 {
|
|
b0:
|
|
%v0 = load i32, i32* %a0, align 4
|
|
%v1 = udiv i32 %v0, 10000
|
|
%v2 = urem i32 %v1, 10
|
|
store i32 %v2, i32* %a1, align 4
|
|
ret i32 0
|
|
}
|
|
|
|
attributes #0 = { nounwind "target-cpu"="hexagonv5" }
|