You've already forked linux-packaging-mono
Imported Upstream version 6.0.0.172
Former-commit-id: f3cc9b82f3e5bd8f0fd3ebc098f789556b44e9cd
This commit is contained in:
parent
8016999e4d
commit
64ac736ec5
15
external/llvm/test/CodeGen/SystemZ/vec-log-01.ll
vendored
Normal file
15
external/llvm/test/CodeGen/SystemZ/vec-log-01.ll
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
; 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
|
||||
}
|
Reference in New Issue
Block a user