summaryrefslogtreecommitdiff
path: root/test/CodeGen
diff options
context:
space:
mode:
authorJakob Stoklund Olesen <stoklund@2pi.dk>2012-10-11 16:46:07 +0000
committerJakob Stoklund Olesen <stoklund@2pi.dk>2012-10-11 16:46:07 +0000
commitebba49395c189364c9ef77fb4c432856330ceca1 (patch)
tree6f791dd31c2098a09c490ae5d3428e35bd2dddd2 /test/CodeGen
parenta867f378979f26e7d87bb6db5b7665a2ee4c0293 (diff)
downloadllvm-ebba49395c189364c9ef77fb4c432856330ceca1.tar.gz
llvm-ebba49395c189364c9ef77fb4c432856330ceca1.tar.bz2
llvm-ebba49395c189364c9ef77fb4c432856330ceca1.tar.xz
Pass an explicit operand number to addLiveIns.
Not all instructions define a virtual register in their first operand. Specifically, INLINEASM has a different format. <rdar://problem/12472811> git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165721 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen')
-rw-r--r--test/CodeGen/X86/early-ifcvt-crash.ll32
1 files changed, 32 insertions, 0 deletions
diff --git a/test/CodeGen/X86/early-ifcvt-crash.ll b/test/CodeGen/X86/early-ifcvt-crash.ll
new file mode 100644
index 0000000000..c828026968
--- /dev/null
+++ b/test/CodeGen/X86/early-ifcvt-crash.ll
@@ -0,0 +1,32 @@
+; RUN: llc < %s -x86-early-ifcvt -verify-machineinstrs
+; RUN: llc < %s -x86-early-ifcvt -stress-early-ifcvt -verify-machineinstrs
+;
+; Run these tests with and without -stress-early-ifcvt to exercise heuristics.
+;
+target triple = "x86_64-apple-macosx10.8.0"
+
+; MachineTraceMetrics::Ensemble::addLiveIns crashes because the first operand
+; on an inline asm instruction is not a vreg def.
+; <rdar://problem/12472811>
+define void @f1() nounwind {
+entry:
+ br i1 undef, label %if.then6.i, label %if.end.i
+
+if.then6.i:
+ br label %if.end.i
+
+if.end.i:
+ br i1 undef, label %if.end25.i, label %if.else17.i
+
+if.else17.i:
+ %shl24.i = shl i32 undef, undef
+ br label %if.end25.i
+
+if.end25.i:
+ %storemerge31.i = phi i32 [ %shl24.i, %if.else17.i ], [ 0, %if.end.i ]
+ store i32 %storemerge31.i, i32* undef, align 4
+ %0 = tail call i32 asm sideeffect "", "=r,r,i,i"(i32 undef, i32 15, i32 1) nounwind
+ %conv = trunc i32 %0 to i8
+ store i8 %conv, i8* undef, align 1
+ unreachable
+}