Re: [PATCH 2/2] Mark untyped calls and handle them specially [PR98689]

2021-04-16 Thread Richard Sandiford via Gcc-patches
Richard Biener via Gcc-patches writes: > On Fri, Apr 16, 2021 at 12:02 PM Richard Sandiford via Gcc-patches > wrote: >> >> This patch fixes a regression introduced by the rtl-ssa patches. >> It was seen on HPPA but it might be latent elsewhere. >> >> The problem is that the traditional way of exp

Re: [PATCH 2/2] Mark untyped calls and handle them specially [PR98689]

2021-04-16 Thread Richard Biener via Gcc-patches
On Fri, Apr 16, 2021 at 12:02 PM Richard Sandiford via Gcc-patches wrote: > > This patch fixes a regression introduced by the rtl-ssa patches. > It was seen on HPPA but it might be latent elsewhere. > > The problem is that the traditional way of expanding an untyped_call > is to emit sequences lik

[PATCH 2/2] Mark untyped calls and handle them specially [PR98689]

2021-04-16 Thread Richard Sandiford via Gcc-patches
This patch fixes a regression introduced by the rtl-ssa patches. It was seen on HPPA but it might be latent elsewhere. The problem is that the traditional way of expanding an untyped_call is to emit sequences like: (call (mem (symbol_ref "foo"))) (set (reg pseudo1) (reg result1)) ...