blob: 31b895e53a3771077e5cff0e7e80cec4edcb629d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
int foo(int i)
{
i++;
if (i && 0)
i;
return 0;
}
/*
* check-name: kill-rewritten-load
* check-command: test-linearize -Wno-decl $file
* check-output-ignore
*
* check-output-excludes: add\\.
*/
|