mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 20:51:52 +01:00
b1c09bbef0
This reverts commit 647c3f4e47de8a850ffcaa897db68702d8d2459a. Got bots failure from sanitizer-windows and maybe others.
9 lines
207 B
LLVM
9 lines
207 B
LLVM
; RUN: not llc -march=sparc < %s -o /dev/null 2>&1 | FileCheck %s
|
|
|
|
; CHECK: sparc only supports sret on the first parameter
|
|
|
|
define void @foo(i32 %a, i32* sret %out) {
|
|
store i32 %a, i32* %out
|
|
ret void
|
|
}
|