aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/XCore/unaligned_store.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/XCore/unaligned_store.ll')
-rw-r--r--test/CodeGen/XCore/unaligned_store.ll20
1 files changed, 0 insertions, 20 deletions
diff --git a/test/CodeGen/XCore/unaligned_store.ll b/test/CodeGen/XCore/unaligned_store.ll
deleted file mode 100644
index 27b428086d5e..000000000000
--- a/test/CodeGen/XCore/unaligned_store.ll
+++ /dev/null
@@ -1,20 +0,0 @@
-; RUN: llc < %s -march=xcore | FileCheck %s
-
-; Byte aligned store.
-; CHECK-LABEL: align1:
-; CHECK: bl __misaligned_store
-define void @align1(i32* %p, i32 %val) nounwind {
-entry:
- store i32 %val, i32* %p, align 1
- ret void
-}
-
-; Half word aligned store.
-; CHECK: align2
-; CHECK: st16
-; CHECK: st16
-define void @align2(i32* %p, i32 %val) nounwind {
-entry:
- store i32 %val, i32* %p, align 2
- ret void
-}