Re: [PATCH] arm: Low overhead loop handle long range branches [PR98931]

2021-02-09 Thread Jakub Jelinek via Gcc-patches
On Tue, Feb 09, 2021 at 03:09:43PM +0100, Jakub Jelinek via Gcc-patches wrote: > >"TARGET_32BIT && TARGET_HAVE_LOB" > > - "le\t%|lr, %l0") > > + "* > > + if (get_attr_length (insn) == 4) > > +return \"le\\t%|lr, %l0\"; > > + else > > +return \"subs\\t%|lr, #1\;bne\\t%l0\"; > > + "

Re: [PATCH] arm: Low overhead loop handle long range branches [PR98931]

2021-02-09 Thread Jakub Jelinek via Gcc-patches
On Tue, Feb 09, 2021 at 02:38:44PM +0100, Andrea Corallo via Gcc-patches wrote: > >From c8216ed1313d670e79b28141dadd644e698c83cf Mon Sep 17 00:00:00 2001 > From: Andrea Corallo > Date: Wed, 3 Feb 2021 15:21:54 +0100 > Subject: [PATCH] arm: Low overhead loop handle long range branches [PR98931] >