Commit 0919ed72 by Dale Johannesen

New, from PR 14498.

From-SVN: r82368
parent 72e89c7c
/* { dg-do compile } */
/* { dg-options "-O3" } */
/* PR 14498. */
#include <stdarg.h>
extern void baz(char *);
void bar (va_list *args)
{
if (args)
{
char *s = va_arg(*args, char *);
baz(s);
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment