From: Chris Lattner Date: Tue, 15 May 2007 01:13:42 +0000 (+0000) Subject: testcase that crashes llc X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=4b2e7acd6a9bb70774321146ec94d43db6b430a9;p=oota-llvm.git testcase that crashes llc git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37059 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGen/ARM/2007-05-14-InlineAsmCstCrash.ll b/test/CodeGen/ARM/2007-05-14-InlineAsmCstCrash.ll new file mode 100644 index 00000000000..58c5f89c619 --- /dev/null +++ b/test/CodeGen/ARM/2007-05-14-InlineAsmCstCrash.ll @@ -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 +}