blob: d1cdd02eea1a5affd9c75ca2ffa346e1206a9a87 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
static void foo(int v)
{
int a[2] = { };
a;
a[1] = v;
}
/*
* check-name: killed-insn
* check-command: test-linearize $file
*
* check-output-ignore
* check-output-excludes: store\\.
*/
|