You've already forked linux-packaging-mono
Imported Upstream version 6.0.0.172
Former-commit-id: f3cc9b82f3e5bd8f0fd3ebc098f789556b44e9cd
This commit is contained in:
parent
8016999e4d
commit
64ac736ec5
19
external/llvm/test/CodeGen/Hexagon/mpy.ll
vendored
Normal file
19
external/llvm/test/CodeGen/Hexagon/mpy.ll
vendored
Normal file
@ -0,0 +1,19 @@
|
||||
; RUN: llc -march=hexagon -mcpu=hexagonv4 < %s | FileCheck %s
|
||||
; CHECK: += mpyi
|
||||
|
||||
define void @foo(i32 %acc, i32 %num, i32 %num2) nounwind {
|
||||
entry:
|
||||
%acc.addr = alloca i32, align 4
|
||||
%num.addr = alloca i32, align 4
|
||||
%num2.addr = alloca i32, align 4
|
||||
store i32 %acc, i32* %acc.addr, align 4
|
||||
store i32 %num, i32* %num.addr, align 4
|
||||
store i32 %num2, i32* %num2.addr, align 4
|
||||
%0 = load i32, i32* %num.addr, align 4
|
||||
%1 = load i32, i32* %acc.addr, align 4
|
||||
%mul = mul nsw i32 %0, %1
|
||||
%2 = load i32, i32* %num2.addr, align 4
|
||||
%add = add nsw i32 %mul, %2
|
||||
store i32 %add, i32* %num.addr, align 4
|
||||
ret void
|
||||
}
|
Reference in New Issue
Block a user