1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 20:12:56 +02:00
llvm-mirror/test/CodeGen/SPARC/missing-sret.ll
Joerg Sonnenberger 314bf5d434 Drop assert that a call with struct return goes to a function with sret
attribute. Clang incorrectly misses it on __muldc3 and friends and the
type system doesn't include it properly either.

llvm-svn: 250938
2015-10-21 20:05:01 +00:00

10 lines
383 B
LLVM

; RUN: llc -march=sparc -filetype=obj < %s > /dev/null 2> %t2
define void @mul_double_cc({ double, double }* noalias sret %agg.result, double %a, double %b, double %c, double %d) {
entry:
call void @__muldc3({ double, double }* sret %agg.result, double %a, double %b, double %c, double %d)
ret void
}
declare void @__muldc3({ double, double }*, double, double, double, double)