Re: [PATCH] middle-end/AArch64 Fix bootstrap after vec changes

2021-08-06 Thread Martin Sebor via Gcc-patches
On 8/6/21 4:50 AM, Tamar Christina wrote: Hi All, The build is broken since a3d3e8c362c2 since it's deleted the ability to pass vec<> by value and now much be past by reference. However some language hooks used by AArch64 were not updated and breaks the build on AArch64. This patch updates the

Re: [PATCH] middle-end/AArch64 Fix bootstrap after vec changes

2021-08-06 Thread Richard Biener via Gcc-patches
On Fri, 6 Aug 2021, Tamar Christina wrote: > Hi All, > > The build is broken since a3d3e8c362c2 since it's deleted the ability to pass > vec<> by value and now much be past by reference. > > However some language hooks used by AArch64 were not updated and breaks the > build on AArch64. This pat

[PATCH] middle-end/AArch64 Fix bootstrap after vec changes

2021-08-06 Thread Tamar Christina via Gcc-patches
Hi All, The build is broken since a3d3e8c362c2 since it's deleted the ability to pass vec<> by value and now much be past by reference. However some language hooks used by AArch64 were not updated and breaks the build on AArch64. This patch updates these hooks. However most of the changes are g