mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-13 23:18:51 +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;
|
||
|
}
|