blob: 55a17a3792c3cd3a820f2aafa8e9054a0748b162 [file] [log] [blame]
Chris Lattnerb95e7d52002-01-23 21:40:57 +00001/* Regression test. Just compile .c -> .ll to test */
2int foo(void) {
3 unsigned char *pp;
4 unsigned w_cnt;
5
6 w_cnt += *pp;
7
8 return w_cnt;
9}