aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/AArch64/aarch-multipart.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/AArch64/aarch-multipart.ll')
-rw-r--r--test/CodeGen/AArch64/aarch-multipart.ll18
1 files changed, 0 insertions, 18 deletions
diff --git a/test/CodeGen/AArch64/aarch-multipart.ll b/test/CodeGen/AArch64/aarch-multipart.ll
deleted file mode 100644
index fd42d6e8cd8e..000000000000
--- a/test/CodeGen/AArch64/aarch-multipart.ll
+++ /dev/null
@@ -1,18 +0,0 @@
-; RUN: llc < %s -o - | FileCheck %s
-
-target datalayout = "e-m:o-i64:64-i128:128-n32:64-S128"
-target triple = "arm64-apple-os"
-
-declare <4 x double> @user_func(<4 x double>) #1
-
-; Make sure we are not crashing on this code.
-; CHECK-LABEL: caller_function
-; CHECK: ret
-define void @caller_function(<4 x double>, <4 x double>, <4 x double>, <4 x double>, <4 x double>) #1 {
-entry:
- %r = call <4 x double> @user_func(<4 x double> %4)
- ret void
-}
-
-attributes #1 = { nounwind readnone }
-