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.
24 lines
494 B
24 lines
494 B
; RUN: llc -march=mips64el -mcpu=mips64r2 -target-abi=n64 < %s | FileCheck %s
|
|
|
|
define void @foo(i32* noalias sret %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 %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
|
|
}
|