testcase that crashes llc
authorChris Lattner <sabre@nondot.org>
Tue, 15 May 2007 01:13:42 +0000 (01:13 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 15 May 2007 01:13:42 +0000 (01:13 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37059 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/ARM/2007-05-14-InlineAsmCstCrash.ll [new file with mode: 0644]

diff --git a/test/CodeGen/ARM/2007-05-14-InlineAsmCstCrash.ll b/test/CodeGen/ARM/2007-05-14-InlineAsmCstCrash.ll
new file mode 100644 (file)
index 0000000..58c5f89
--- /dev/null
@@ -0,0 +1,6 @@
+; RUN: llvm-as < %s | llc -march=arm -mattr=+v6
+
+define i32 @test3() {
+       tail call void asm sideeffect "/* number: ${0:c} */", "i"( i32 1 )
+       ret i32 11
+}