mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
10 lines
148 B
C
10 lines
148 B
C
|
/* Regression test. Just compile .c -> .ll to test */
|
||
|
int foo(void) {
|
||
|
unsigned char *pp;
|
||
|
unsigned w_cnt;
|
||
|
|
||
|
w_cnt += *pp;
|
||
|
|
||
|
return w_cnt;
|
||
|
}
|