aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/ARM/constantpool-align.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/ARM/constantpool-align.ll')
-rw-r--r--test/CodeGen/ARM/constantpool-align.ll19
1 files changed, 0 insertions, 19 deletions
diff --git a/test/CodeGen/ARM/constantpool-align.ll b/test/CodeGen/ARM/constantpool-align.ll
deleted file mode 100644
index 1815b87469b6..000000000000
--- a/test/CodeGen/ARM/constantpool-align.ll
+++ /dev/null
@@ -1,19 +0,0 @@
-; RUN: llc < %s | FileCheck %s
-target datalayout = "e-m:e-p:32:32-i64:64-v128:64:128-a:0:32-n32-S64"
-target triple = "thumbv7-arm-none-eabi"
-
-; CHECK-LABEL: f:
-; CHECK: vld1.64 {{.*}}, [r1:128]
-; CHECK: .p2align 4
-define void @f(<4 x i32>* %p) {
- store <4 x i32> <i32 -1, i32 0, i32 0, i32 -1>, <4 x i32>* %p, align 4
- ret void
-}
-
-; CHECK-LABEL: f_optsize:
-; CHECK: vld1.64 {{.*}}, [r1]
-; CHECK: .p2align 3
-define void @f_optsize(<4 x i32>* %p) optsize {
- store <4 x i32> <i32 -1, i32 0, i32 0, i32 -1>, <4 x i32>* %p, align 4
- ret void
-}