aboutsummaryrefslogtreecommitdiff
path: root/test/ExecutionEngine/test-loadstore.ll
blob: f8fadab85e4691a0482cbfe6a93c8ae843f9b9ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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
}