1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00

testcase that crashes dead arg elim.

llvm-svn: 28942
This commit is contained in:
Chris Lattner 2006-06-27 20:58:41 +00:00
parent d7b1f61e72
commit 7104d3b8a7

View File

@ -0,0 +1,13 @@
; RUN: llvm-as < %s | opt -deadargelim -disable-output
implementation
internal csretcc void %build_delaunay({int}* %agg.result) {
ret void
}
void %test() {
call csretcc void %build_delaunay({int}* null)
ret void
}