Re: [PATCH v2 6/7] Remaining support for clobber high

2018-12-13 Thread Jakub Jelinek
On Thu, Jul 26, 2018 at 10:13:28AM +0100, Alan Hayward wrote: > --- a/gcc/rtl.c > +++ b/gcc/rtl.c > @@ -304,6 +304,10 @@ copy_rtx (rtx orig) > return orig; >break; > > +case CLOBBER_HIGH: > + gcc_assert (REG_P (XEXP (orig, 0))); > + return orig; Wrong formatting

Re: [PATCH v2 6/7] Remaining support for clobber high

2018-08-03 Thread Jeff Law
On 07/26/2018 03:13 AM, Alan Hayward wrote: > Add the remainder of clobber high checks. > Happy to split this into smaller patches if required (there didn't > seem anything obvious to split into). > > 2018-07-25 Alan Hayward > > * alias.c (record_set): Check for clobber high. > *

[PATCH v2 6/7] Remaining support for clobber high

2018-07-26 Thread Alan Hayward
Add the remainder of clobber high checks. Happy to split this into smaller patches if required (there didn't seem anything obvious to split into). 2018-07-25 Alan Hayward * alias.c (record_set): Check for clobber high. * cfgexpand.c (expand_gimple_stmt): Likewise. *