blob: ec454c826835ada32ccdd6f97422842574c5293c [file] [log] [blame]
Eric Christopher3883e662011-07-26 22:17:02 +00001// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
2
3/* 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}