]> granicus.if.org Git - llvm/commitdiff
[AArch64][SVE] Move the testcase into CodeGen dir
authorJinsong Ji <jji@us.ibm.com>
Thu, 3 Oct 2019 20:21:23 +0000 (20:21 +0000)
committerJinsong Ji <jji@us.ibm.com>
Thu, 3 Oct 2019 20:21:23 +0000 (20:21 +0000)
https://reviews.llvm.org/rL373600 added an AArch64 testcase in top dir
which should be moved to Codegen dir.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@373657 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/AArch64/sve-fp.ll [new file with mode: 0644]

diff --git a/test/CodeGen/AArch64/sve-fp.ll b/test/CodeGen/AArch64/sve-fp.ll
new file mode 100644 (file)
index 0000000..0891385
--- /dev/null
@@ -0,0 +1,25 @@
+; RUN: llc -mtriple=aarch64-linux-gnu -mattr=+sve < %s | FileCheck %s
+
+define <vscale x 8 x half> @fadd_h(<vscale x 8 x half> %a, <vscale x 8 x half> %b) {
+; CHECK-LABEL: fadd_h:
+; CHECK: fadd z0.h, z0.h, z1.h
+; CHECK-NEXT: ret
+  %res = fadd <vscale x 8 x half> %a, %b
+  ret <vscale x 8 x half> %res
+}
+
+define <vscale x 4 x float> @fadd_s(<vscale x 4 x float> %a, <vscale x 4 x float> %b) {
+; CHECK-LABEL: fadd_s:
+; CHECK: fadd z0.s, z0.s, z1.s
+; CHECK-NEXT: ret
+  %res = fadd <vscale x 4 x float> %a, %b
+  ret <vscale x 4 x float> %res
+}
+
+define <vscale x 2 x double> @fadd_d(<vscale x 2 x double> %a, <vscale x 2 x double> %b) {
+; CHECK-LABEL: fadd_d:
+; CHECK: fadd z0.d, z0.d, z1.d
+; CHECK-NEXT: ret
+  %res = fadd <vscale x 2 x double> %a, %b
+  ret <vscale x 2 x double> %res
+}