2 pr86714.c from the execute part of the gcc torture tests.
10 #pragma disable_warning 147
13 /* PR tree-optimization/86714 - tree-ssa-forwprop.c confused by too
16 The excessively long initializer for a[0] is undefined but this
17 test verifies that the excess elements are not considered a part
18 of the value of the array as a matter of QoI. */
20 const char a
[2][3] = { "1234", "xyz" };
26 testTortureExecute (void)
29 memset (b
+ 4, 'a', 2);
31 if (b
[0] != '1' || b
[1] != '2' || b
[2] != '3'
32 || b
[3] != 'x' || b
[4] != 'a' || b
[5] != 'a')
35 if (memcmp (pb
, "123xaa", 6))