mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 04:02:41 +01:00
b8298b46c2
llvm-svn: 1575
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;
|
|
}
|