aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/validation/memops/kill-redundant-store0.c
blob: 8819938fe7630c0e05d2e9048a15ef2f52e4f77d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
void foo(int *ptr)
{
	int i = *ptr;
	*ptr = i;
}

/*
 * check-name: kill-redundant-store0
 * check-command: test-linearize -Wno-decl $file
 *
 * check-output-ignore
 * check-output-excludes: store
 */