aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/validation/backend/pointer-cmp.c
blob: fa76d1b57c1d05e8f8d7e2b5ab400eab71df083f (plain)
1
2
3
4
5
6
7
8
9
int cmpint(   int x,   int y)	{ return x == y; }
int cmpflt( float x, float y)	{ return x == y; }
int cmpvptr(void *x, void *y)	{ return x == y; }
int cmpiptr(int  *x, int  *y)	{ return x == y; }

/*
 * check-name: pointer comparison
 * check-command: ./sparsec -Wno-decl -c $file -o tmp.o
 */