Re: [Mesa-dev] [PATCH] radv: fix compiler issues with GCC 9

2019-02-12 Thread Bas Nieuwenhuizen
Reviewed-by: Bas Nieuwenhuizen On Mon, Feb 11, 2019 at 1:16 PM Gustaw Smolarczyk wrote: > > FWIW, > > Reviewed-by: Gustaw Smolarczyk > > pon., 11 lut 2019 o 10:15 Samuel Pitoiset > napisał(a): > > > > "The C standard says that compound literals which occur inside of > > the body of a function

Re: [Mesa-dev] [PATCH] radv: fix compiler issues with GCC 9

2019-02-11 Thread Gustaw Smolarczyk
FWIW, Reviewed-by: Gustaw Smolarczyk pon., 11 lut 2019 o 10:15 Samuel Pitoiset napisał(a): > > "The C standard says that compound literals which occur inside of > the body of a function have automatic storage duration associated > with the enclosing block. Older GCC releases were putting such

[Mesa-dev] [PATCH] radv: fix compiler issues with GCC 9

2019-02-11 Thread Samuel Pitoiset
"The C standard says that compound literals which occur inside of the body of a function have automatic storage duration associated with the enclosing block. Older GCC releases were putting such compound literals into the scope of the whole function, so their lifetime actually ended at the end of