[AArch64] Merge stores of D-register values with different modes
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / 20071214-1.c
blobf30af930630f315fc5b39124b83a343593b6dae3
1 typedef __builtin_va_list va_list;
2 void gftp_config_parse_args (int numargs, char **first, ...)
4 char **dest = first;
5 va_list argp;
6 __builtin_va_start (argp, first);
7 while (numargs-- > 0)
9 *dest = __builtin_malloc (1);
10 dest = __builtin_va_arg(argp, char **);
11 *dest = ((void *)0);
13 __builtin_va_end(argp);