mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 12:12:47 +01:00
23c5a589f3
It will just be the same as the regular calling convention. rdar://28029509 llvm-svn: 279853
12 lines
321 B
LLVM
12 lines
321 B
LLVM
; RUN: llc -verify-machineinstrs -mtriple=aarch64-apple-ios -o - %s | FileCheck %s
|
|
; RUN: llc -O0 -verify-machineinstrs -mtriple=aarch64-apple-ios -o - %s | FileCheck %s
|
|
|
|
; CHECK: t1
|
|
; CHECK: fadd s0, s0, s1
|
|
; CHECK: ret
|
|
define swiftcc float @t1(float %a, float %b) {
|
|
entry:
|
|
%add = fadd float %a, %b
|
|
ret float %add
|
|
}
|