mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-03 17:31:50 +00:00
1654111384
This adds ABI and CodeGen support for the v2f64 type, which is natively supported by z13 instructions. Based on a patch by Richard Sandiford. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@236522 91177308-0d34-0410-b5e6-96231b3b80d8
16 lines
393 B
LLVM
16 lines
393 B
LLVM
; Test v2f64 logarithm.
|
|
;
|
|
; RUN: llc < %s -mtriple=s390x-linux-gnu -mcpu=z13 | FileCheck %s
|
|
|
|
declare <2 x double> @llvm.log.v2f64(<2 x double>)
|
|
|
|
define <2 x double> @f1(<2 x double> %val) {
|
|
; CHECK-LABEL: f1:
|
|
; CHECK: brasl %r14, log@PLT
|
|
; CHECK: brasl %r14, log@PLT
|
|
; CHECK: vmrhg %v24,
|
|
; CHECK: br %r14
|
|
%ret = call <2 x double> @llvm.log.v2f64(<2 x double> %val)
|
|
ret <2 x double> %ret
|
|
}
|