mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
60c1740ad6
There's no need to do this if the user doesn't call va_start. In the future, we're going to have thunks that forward these register parameters with musttail calls, and they won't need these spills for handling va_start. Most of the test suite changes are adding va_start calls to existing tests to keep things working. llvm-svn: 216294
11 lines
265 B
LLVM
11 lines
265 B
LLVM
; RUN: llc -mtriple=arm-darwin < %s | FileCheck %s
|
|
; RUN: llc -O0 -mtriple=arm-darwin < %s | FileCheck %s
|
|
|
|
define void @foo(i8*, ...) {
|
|
ret void
|
|
}
|
|
; CHECK-LABEL: {{^_?}}foo:
|
|
; CHECK-NOT: str
|
|
; CHECK: {{bx lr|mov pc, lr}}
|
|
declare void @llvm.va_start(i8*) nounwind
|