mirror of
https://github.com/RPCS3/llvm.git
synced 2026-07-23 20:25:50 -04:00
6264e53456
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@274129 91177308-0d34-0410-b5e6-96231b3b80d8
10 lines
222 B
LLVM
10 lines
222 B
LLVM
; RUN: llc %s -o - -mtriple=powerpc-apple-darwin9 | FileCheck %s
|
|
define ppc_fp128 @test1(i64 %X) nounwind readnone {
|
|
entry:
|
|
%0 = sitofp i64 %X to ppc_fp128
|
|
ret ppc_fp128 %0
|
|
}
|
|
|
|
; CHECK: _test1:
|
|
; CHECK: bl ___floatditf
|