Re: [PATCH][AArch64] Remove varargs from aarch64_simd_expand_args

2014-09-02 Thread Marcus Shawcroft
On 20 August 2014 10:20, Alan Lawrence wrote: > gcc/ChangeLog: > > * config/aarch64/aarch64-builtins.c (aarch64_simd_expand_args): > Replace > varargs with pointer parameter. > (aarch64_simd_expand_builtin): pass pointer into previous. OK /Marcus

[PATCH][AArch64] Remove varargs from aarch64_simd_expand_args

2014-08-20 Thread Alan Lawrence
This patch just replaces the varargs with a builtin_simd_arg*. The use of varargs seems to make stepping into, and breakpointing, aarch64_simd_expand_args difficult, and this adds typesafety and (I argue!) reduces complexity. Tested check-gcc on aarch64-none-elf. gcc/ChangeLog: * conf