llvm-6502/test/ExecutionEngine/test-loadstore.ll

13 lines
197 B
LLVM
Raw Normal View History

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
}