diff options
author | Chris Lattner <sabre@nondot.org> | 2007-05-15 01:13:42 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-05-15 01:13:42 +0000 |
commit | c5900bd25b4843ac3d9a7f354a98ff09aff2c482 (patch) | |
tree | 507380db30554397cef914b4d4dc6b69633a7ef2 | |
parent | eca3b67199331fd20a0451e8924b548a0be24e75 (diff) | |
download | bcm5719-llvm-c5900bd25b4843ac3d9a7f354a98ff09aff2c482.tar.gz bcm5719-llvm-c5900bd25b4843ac3d9a7f354a98ff09aff2c482.zip |
testcase that crashes llc
llvm-svn: 37059
-rw-r--r-- | llvm/test/CodeGen/ARM/2007-05-14-InlineAsmCstCrash.ll | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/ARM/2007-05-14-InlineAsmCstCrash.ll b/llvm/test/CodeGen/ARM/2007-05-14-InlineAsmCstCrash.ll new file mode 100644 index 00000000000..58c5f89c619 --- /dev/null +++ b/llvm/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 +} |