mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
24 lines
504 B
LLVM
24 lines
504 B
LLVM
; RUN: llc -march=mips64el -mcpu=mips64r2 -target-abi=n64 < %s | FileCheck %s
|
|
|
|
define void @foo(i32* noalias sret(i32) %agg.result) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: foo:
|
|
; CHECK: sw {{.*}}, 0($4)
|
|
; CHECK: jr $ra
|
|
; CHECK-NEXT: move $2, $4
|
|
|
|
store i32 42, i32* %agg.result
|
|
ret void
|
|
}
|
|
|
|
define void @bar(i32 signext %v, i32* noalias sret(i32) %agg.result) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: bar:
|
|
; CHECK: sw $4, 0($5)
|
|
; CHECK: jr $ra
|
|
; CHECK-NEXT: move $2, $5
|
|
|
|
store i32 %v, i32* %agg.result
|
|
ret void
|
|
}
|