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