aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/XCore/licm-ldwcp.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/XCore/licm-ldwcp.ll')
-rw-r--r--test/CodeGen/XCore/licm-ldwcp.ll18
1 files changed, 0 insertions, 18 deletions
diff --git a/test/CodeGen/XCore/licm-ldwcp.ll b/test/CodeGen/XCore/licm-ldwcp.ll
deleted file mode 100644
index f98c0eb56276..000000000000
--- a/test/CodeGen/XCore/licm-ldwcp.ll
+++ /dev/null
@@ -1,18 +0,0 @@
-; RUN: llc < %s -march=xcore -asm-verbose=0 | FileCheck %s
-
-; MachineLICM should hoist the LDWCP out of the loop.
-
-; CHECK-LABEL: f:
-; CHECK-NEXT: ldw [[REG:r[0-9]+]], cp[.LCPI0_0]
-; CHECK-NEXT: .LBB0_1:
-; CHECK-NEXT: stw [[REG]], r0[0]
-; CHECK-NEXT: bu .LBB0_1
-
-define void @f(i32* nocapture %p) noreturn nounwind {
-entry:
- br label %bb
-
-bb: ; preds = %bb, %entry
- store volatile i32 525509670, i32* %p, align 4
- br label %bb
-}