brintos

brintos / llvm-project-archived public Read only

0
0
Text · 194 B · ec454c8 Raw
12 lines · c
1// RUN: %clang_cc1 -emit-llvm %s  -o /dev/null2 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}12