Re: [PATCH] Fix va_arg gimplification error for s390

2015-05-13 Thread Richard Biener
On Wed, May 13, 2015 at 9:38 AM, Tom de Vries wrote: > Hi, > > this patch fixes a gimplification error of the va_list argument of va_arg > for target s390. The error was introduced by r223054, the fix for PR66010. > > > I. > > consider test-case: > ... > #include > > int > f1 (int i, ...) > { >

[PATCH] Fix va_arg gimplification error for s390

2015-05-13 Thread Tom de Vries
Hi, this patch fixes a gimplification error of the va_list argument of va_arg for target s390. The error was introduced by r223054, the fix for PR66010. I. consider test-case: ... #include int f1 (int i, ...) { int res; va_list ap; va_start (ap, i); res = va_arg (ap, int); va_en