PR tree-optimization/83369 - Missing diagnostics during inlining
[official-gcc.git] / gcc / testsuite / gcc.dg / pr32135.c
blob4459656441279699451eaff75273da1e5b3d49d9
1 /* { dg-do compile } */
2 /* { dg-options "-Warray-bounds -O2" } */
3 struct PhaseEntryType
5 char raw_field[50 + 1];
6 };
7 int
8 ParsePhase (char in_cols[15][250], struct PhaseEntryType *P)
10 __builtin_strncpy (P->raw_field, in_cols[2], 50);