1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-28 06:22:51 +01:00
llvm-mirror/test/Regression/Jello/test-loadstore.ll
Chris Lattner 842793e45f New testcase for loads and stores
llvm-svn: 4715
2002-11-17 21:06:13 +00:00

13 lines
197 B
LLVM

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
}