blob: 258d3cc0e3dc485d6e02dff3c1aa2d0416b97489 [file] [log] [blame]
Tanya Lattnere9af5d12004-11-06 22:41:00 +00001// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
2
Chris Lattnerb95e7d52002-01-23 21:40:57 +00003/* Regression test. Just compile .c -> .ll to test */
4int foo(void) {
5 unsigned char *pp;
6 unsigned w_cnt;
7
8 w_cnt += *pp;
9
10 return w_cnt;
11}