blob: 6b5205a6e7ed07bd8521a7d3ab192d6fe3cc861b [file] [log] [blame]
Dan Gohman2d65d352009-08-25 15:38:29 +00001// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002
3unsigned long do_csum(const unsigned char *buff, int len, unsigned long result) {
4 if (2 & (unsigned long) buff) result += 1;
5 return result;
6}