aboutsummaryrefslogtreecommitdiff
path: root/test/Transforms/Inline/2004-10-17-InlineFunctionWithoutReturn.ll
blob: caae0836bd9cad835997f59aee3e526568253293 (plain)
1
2
3
4
5
6
7
8
9
10
; RUN: llvm-as < %s | opt -inline -disable-output

int %test() {
	unwind
}

int %caller() {
	%X = call int %test()
	ret int %X
}