From 0adacc5670182f135c9baa05f74778f63fa7406b Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Mon, 13 Dec 2004 19:10:32 +0000 Subject: [PATCH] New testcase that crashes the V9 backend. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18905 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CodeGen/SparcV9/2004-12-13-MallocCrash.ll | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 test/CodeGen/SparcV9/2004-12-13-MallocCrash.ll diff --git a/test/CodeGen/SparcV9/2004-12-13-MallocCrash.ll b/test/CodeGen/SparcV9/2004-12-13-MallocCrash.ll new file mode 100644 index 00000000000..b6ad2e78880 --- /dev/null +++ b/test/CodeGen/SparcV9/2004-12-13-MallocCrash.ll @@ -0,0 +1,6 @@ +; RUN: llvm-as < %s | llc -march=sparcv9 + +void %main() { + %tmp.0.i2.i = malloc [24 x sbyte] + ret void +}