mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 08:23:21 +01:00
816f7dfed0
are correctly marked as used instead of passing all possible argument registers as used. llvm-svn: 123301
14 lines
213 B
LLVM
14 lines
213 B
LLVM
; RUN: llc -march=sparc -O0 <%s
|
|
|
|
define void @test() nounwind {
|
|
entry:
|
|
%0 = tail call i32 (...)* @foo() nounwind
|
|
tail call void (...)* @bar() nounwind
|
|
ret void
|
|
}
|
|
|
|
declare i32 @foo(...)
|
|
|
|
declare void @bar(...)
|
|
|