mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-19 17:37:24 +00:00
6 lines
110 B
C
6 lines
110 B
C
|
// RUN: %llvmgcc -xc %s -c -o - | llvm-dis | grep getelementptr
|
||
|
|
||
|
int *test(int *X, int Y) {
|
||
|
return X + Y;
|
||
|
}
|