Initial checkin of now fixed bug

llvm-svn: 1575
This commit is contained in:
Chris Lattner 2002-01-23 21:40:57 +00:00
parent b07e2c0139
commit 7224240f74
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
/* Regression test. Just compile .c -> .ll to test */
int foo(void) {
unsigned char *pp;
unsigned w_cnt;
w_cnt += *pp;
return w_cnt;
}