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, ...)
> {
>
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