aboutsummaryrefslogtreecommitdiffstats
path: root/test/ExecutionEngine/test-call.ll
blob: 89e128a5a12807f3e126c0ae05bd1736a38b9c44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
; RUN: llvm-as -f %s -o %t.bc
; RUN: lli %t.bc > /dev/null


declare void %exit(int)

int %test(sbyte %C, short %S) {
  %X = cast short %S to int
  ret int %X
}

void %FP(void(int) * %F) {
	%X = call int %test(sbyte 123, short 1024)
	call void %F(int %X)
	ret void
}

int %main() {
	call void %FP(void(int)* %exit)
	ret int 1
}