1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
int test_array(int i) { static const int a[3] = { [0] = 1, [2] = 3, }; return a[1]; } /* * check-name: default-init-array * check-command: test-linearize -Wno-decl -fdump-ir $file * check-known-to-fail * * check-output-ignore * check-output-contains: phisrc\\..*return.*\\$0 * check-output-excludes: load\\. */