aboutsummaryrefslogtreecommitdiffstats
path: root/test/Transforms/DeadArgElim/2006-06-27-struct-ret.ll
blob: 2a7b3a1f0421da23a71136b20380a8afc3e0aedc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
; RUN: llvm-upgrade < %s | llvm-as | 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
}