blob: f8fadab85e4691a0482cbfe6a93c8ae843f9b9ea [file] [log] [blame]
Chris Lattnere4ae94c2002-11-17 21:06:13 +00001
2void %test(sbyte* %P, short* %P, int* %P) {
3 %V = load sbyte* %P
4 store sbyte %V, sbyte* %P
5
6 %V = load short* %P
7 store short %V, short* %P
8
9 %V = load int* %P
10 store int %V, int* %P
11 ret void
12}