summaryrefslogtreecommitdiff
path: root/test/CodeGen/XCore/sin.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/XCore/sin.ll')
-rw-r--r--test/CodeGen/XCore/sin.ll18
1 files changed, 0 insertions, 18 deletions
diff --git a/test/CodeGen/XCore/sin.ll b/test/CodeGen/XCore/sin.ll
deleted file mode 100644
index 09ca852198..0000000000
--- a/test/CodeGen/XCore/sin.ll
+++ /dev/null
@@ -1,18 +0,0 @@
-; RUN: llc < %s -march=xcore | FileCheck %s
-declare double @llvm.sin.f64(double)
-
-define double @test(double %F) {
-; CHECK: test:
-; CHECK: bl sin
- %result = call double @llvm.sin.f64(double %F)
- ret double %result
-}
-
-declare float @llvm.sin.f32(float)
-
-define float @testf(float %F) {
-; CHECK: testf:
-; CHECK: bl sinf
- %result = call float @llvm.sin.f32(float %F)
- ret float %result
-}