1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2025-02-20 14:29:27 +00:00

12 lines
157 B
LLVM
Raw Normal View History

implementation
int *%foo(int *%A, int **%B, int *%C, int **%D, int* %E) {
%a = load int* %A
%b = load int** %B
store int* %C, int** %D
ret int* %E
}