Julian Seward b71e8bb6c5 Rename 'exp-ptrcheck' to 'exp-sgcheck' and hope this does not cause
too much build carnage.



git-svn-id: svn://svn.valgrind.org/valgrind/trunk@11745
2011-05-11 16:04:28 +00:00

16 lines
200 B
C

#include <stdio.h>
short a[7];
static short b[7];
int main ( void )
{
int i;
short sum;
for (i = 0; i < 7+1; i++) {
sum += a[i] * b[i];
}
return 1 & ((unsigned int)sum / 1000000);
}