blob: 1779a99942ea5c61955249f6edf8b566e7490f21 [file] [log] [blame]
Dan Gohmanfea1dd02009-08-25 15:38:29 +00001// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
Tanya Lattnere9af5d12004-11-06 22:41:00 +00002
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}