Re: [PATCH] handle VLAs with arbitrary many bounds (PR 100619)

2021-05-19 Thread Joseph Myers
On Wed, 19 May 2021, Martin Sebor via Gcc-patches wrote: > The GCC 11 -Warray-parameter and -Wvla-parameter enhancement uses > a small local buffer to format the description of the VLA bounds > for the internal attribute access. When the number of bounds is > in excess of the size of the buffer t

[PATCH] handle VLAs with arbitrary many bounds (PR 100619)

2021-05-19 Thread Martin Sebor via Gcc-patches
The GCC 11 -Warray-parameter and -Wvla-parameter enhancement uses a small local buffer to format the description of the VLA bounds for the internal attribute access. When the number of bounds is in excess of the size of the buffer the code asserts as the test case in pr100619 shows. The attached