aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/X86/misched-new.ll
diff options
context:
space:
mode:
authorAndrew Trick <atrick@apple.com>2012-03-21 22:31:31 +0000
committerAndrew Trick <atrick@apple.com>2012-03-21 22:31:31 +0000
commit07269265b048b4781bc446a3a35e405e9fb71b29 (patch)
treeebcce5f7a060993af2bb1dec3b47a6d2c2c339d8 /test/CodeGen/X86/misched-new.ll
parent799184d8eb140d02385501223cea0a087148b67b (diff)
downloadexternal_llvm-07269265b048b4781bc446a3a35e405e9fb71b29.zip
external_llvm-07269265b048b4781bc446a3a35e405e9fb71b29.tar.gz
external_llvm-07269265b048b4781bc446a3a35e405e9fb71b29.tar.bz2
misched: tag a few XFAILs that I plan to fix
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@153222 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/X86/misched-new.ll')
-rw-r--r--test/CodeGen/X86/misched-new.ll25
1 files changed, 25 insertions, 0 deletions
diff --git a/test/CodeGen/X86/misched-new.ll b/test/CodeGen/X86/misched-new.ll
new file mode 100644
index 0000000..f3c2af8
--- /dev/null
+++ b/test/CodeGen/X86/misched-new.ll
@@ -0,0 +1,25 @@
+; RUN: llc -march=x86-64 -mcpu=core2 -enable-misched -misched=shuffle -misched-bottomup < %s
+; XFAIL: *
+; ...should pass. See PR12324: misched bringup
+;
+; Interesting MachineScheduler cases.
+
+declare void @llvm.memcpy.p0i8.p0i8.i64(i8* nocapture, i8* nocapture, i64, i32, i1) nounwind
+
+; From oggenc.
+; After coalescing, we have a dead superreg (RAX) definition.
+;
+; CHECK: xorl %esi, %esi
+; CHECK: movl $32, %ecx
+; CHECK: rep;movsl
+define fastcc void @_preextrapolate_helper() nounwind uwtable ssp {
+entry:
+ br i1 undef, label %for.cond.preheader, label %if.end
+
+for.cond.preheader: ; preds = %entry
+ call void @llvm.memcpy.p0i8.p0i8.i64(i8* undef, i8* null, i64 128, i32 4, i1 false) nounwind
+ unreachable
+
+if.end: ; preds = %entry
+ ret void
+}