Chris Lattner | e4ae94c | 2002-11-17 21:06:13 +0000 | [diff] [blame^] | 1 | |
2 | void %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 | } |