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

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