aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/Hexagon/floatconvert-ieee-rnd-near.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/Hexagon/floatconvert-ieee-rnd-near.ll')
-rw-r--r--test/CodeGen/Hexagon/floatconvert-ieee-rnd-near.ll22
1 files changed, 0 insertions, 22 deletions
diff --git a/test/CodeGen/Hexagon/floatconvert-ieee-rnd-near.ll b/test/CodeGen/Hexagon/floatconvert-ieee-rnd-near.ll
deleted file mode 100644
index 03d1fbf44cb6..000000000000
--- a/test/CodeGen/Hexagon/floatconvert-ieee-rnd-near.ll
+++ /dev/null
@@ -1,22 +0,0 @@
-; RUN: llc -march=hexagon -mcpu=hexagonv4 < %s | FileCheck %s
-; CHECK: __hexagon_addsf3
-; CHECK: __hexagon_subsf3
-
-define void @foo(float* %acc, float %num, float %num2) nounwind {
-entry:
- %acc.addr = alloca float*, align 4
- %num.addr = alloca float, align 4
- %num2.addr = alloca float, align 4
- store float* %acc, float** %acc.addr, align 4
- store float %num, float* %num.addr, align 4
- store float %num2, float* %num2.addr, align 4
- %0 = load float*, float** %acc.addr, align 4
- %1 = load float, float* %0
- %2 = load float, float* %num.addr, align 4
- %add = fadd float %1, %2
- %3 = load float, float* %num2.addr, align 4
- %sub = fsub float %add, %3
- %4 = load float*, float** %acc.addr, align 4
- store float %sub, float* %4
- ret void
-}