Re: [PATCH] rs6000: Fix misnamed built-in

2020-09-16 Thread Bill Schmidt via Gcc-patches
On 9/16/20 5:32 AM, Segher Boessenkool wrote: On Tue, Sep 15, 2020 at 08:38:42PM -0500, Bill Schmidt wrote: The description in rs6000-builtin.def provides for a builtin named __builtin_altivec_xst_len_r. However, it is hand-defined in altivec_init_builtins as __builtin_xst_len_r, against the us

Re: [PATCH] rs6000: Fix misnamed built-in

2020-09-16 Thread Segher Boessenkool
On Tue, Sep 15, 2020 at 08:38:42PM -0500, Bill Schmidt wrote: > The description in rs6000-builtin.def provides for a builtin named > __builtin_altivec_xst_len_r. However, it is hand-defined in > altivec_init_builtins as __builtin_xst_len_r, against the usual naming > practice. Fix that. >

[PATCH] rs6000: Fix misnamed built-in

2020-09-15 Thread Bill Schmidt via Gcc-patches
The description in rs6000-builtin.def provides for a builtin named __builtin_altivec_xst_len_r. However, it is hand-defined in altivec_init_builtins as __builtin_xst_len_r, against the usual naming practice. Fix that. Bootstrapped and tested on powerpc64le-unknown-linux-gnu with no regressions;