mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 20:29:48 +00:00
fa341d919f
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@145716 91177308-0d34-0410-b5e6-96231b3b80d8
16 lines
471 B
LLVM
16 lines
471 B
LLVM
; RUN: llc -march=mips < %s | FileCheck %s
|
|
|
|
%struct.DWstruct = type { i32, i32 }
|
|
|
|
define i32 @A0(i32 %u, i32 %v) nounwind {
|
|
entry:
|
|
; CHECK: multu
|
|
; CHECK: mflo
|
|
; CHECK: mfhi
|
|
%asmtmp = tail call %struct.DWstruct asm "multu $2,$3", "={lo},={hi},d,d"( i32 %u, i32 %v ) nounwind
|
|
%asmresult = extractvalue %struct.DWstruct %asmtmp, 0
|
|
%asmresult1 = extractvalue %struct.DWstruct %asmtmp, 1 ; <i32> [#uses=1]
|
|
%res = add i32 %asmresult, %asmresult1
|
|
ret i32 %res
|
|
}
|