aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/SystemZ/vec-log-01.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/SystemZ/vec-log-01.ll')
-rw-r--r--test/CodeGen/SystemZ/vec-log-01.ll15
1 files changed, 0 insertions, 15 deletions
diff --git a/test/CodeGen/SystemZ/vec-log-01.ll b/test/CodeGen/SystemZ/vec-log-01.ll
deleted file mode 100644
index f9b7402f08e7..000000000000
--- a/test/CodeGen/SystemZ/vec-log-01.ll
+++ /dev/null
@@ -1,15 +0,0 @@
-; 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
-}