llvm-6502/test/Transforms/DeadArgElim/2006-06-27-struct-ret.ll

14 lines
223 B
LLVM
Raw Normal View History

; 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
}