aboutsummaryrefslogtreecommitdiffstats
path: root/test/Transforms/Inline/basictest.ll
blob: f12d00c364ef04a7e1ebe41be1cf905e40407b8c (plain)
1
2
3
4
5
6
7
8
9
10
11
; RUN: as < %s | opt -inline -disable-output -print

int %func(int %i) {
	ret int %i
}

int %main(int %argc) {
	%X = call int %func(int 7)
	%Y = add int %X, %argc
	ret int %Y
}