aboutsummaryrefslogtreecommitdiffstats
path: root/test/ExecutionEngine/test-loadstore.ll
blob: 1685c78142fffce1bbfa790f63cda5c011207a7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29

void %test(sbyte* %P, short* %P, int* %P) {
	%V = load sbyte* %P
	store sbyte %V, sbyte* %P

	%V = load short* %P
	store short %V, short* %P

	%V = load int* %P
	store int %V, int* %P
	ret void
}

uint %varalloca(uint %Size) {
	%X = alloca uint, uint %Size        ;; Variable sized alloca
	store uint %Size, uint* %X
	%Y = load uint* %X
	ret uint %Y
}

int %main() {
	%A = alloca sbyte
	%B = alloca short
	%C = alloca int
	call void %test(sbyte* %A, short* %B, int* %C)
	call uint %varalloca(uint 7)

	ret int 0
}