aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/ARM/vfp-libcalls.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/ARM/vfp-libcalls.ll')
-rw-r--r--test/CodeGen/ARM/vfp-libcalls.ll11
1 files changed, 0 insertions, 11 deletions
diff --git a/test/CodeGen/ARM/vfp-libcalls.ll b/test/CodeGen/ARM/vfp-libcalls.ll
deleted file mode 100644
index 59d5ccc95840..000000000000
--- a/test/CodeGen/ARM/vfp-libcalls.ll
+++ /dev/null
@@ -1,11 +0,0 @@
-; RUN: llc -mtriple=armv6-apple-ios -mcpu=arm1136jf-s -o - %s | FileCheck %s --check-prefix=CHECK-HARD
-; RUN: llc -mtriple=thumbv6-apple-ios -mcpu=arm1136jf-s -o - %s | FileCheck %s --check-prefix=CHECK-SOFTISH
-; RUN: llc -mtriple=armv7s-apple-ios -mattr=+soft-float -mcpu=arm1136jf-s -o - %s | FileCheck %s --check-prefix=CHECK-SOFT
-
-define float @test_call(float %a, float %b) {
-; CHECK-HARD: vadd.f32 {{s[0-9]+}}, {{s[0-9]+}}, {{s[0-9]+}}
-; CHECK-SOFTISH: bl ___addsf3vfp
-; CHECK-SOFT: bl ___addsf3{{$}}
- %sum = fadd float %a, %b
- ret float %sum
-}