Karl Meakin <karl.mea...@arm.com> writes: > Make the formatting of the RTL templates in the rules for branch > instructions more consistent with each other. > > gcc/ChangeLog: > > * config/aarch64/aarch64.md (cbranch<mode>4): Reformat. > (cbranchcc4): Likewise. > (condjump): Likewise. > (*compare_condjump<GPI:mode>): Likewise. > (aarch64_cb<optab><mode>1): Likewise. > (*cb<optab><mode>1): Likewise. > (tbranch_<code><mode>3): Likewise. > (@aarch64_tb<optab><ALLI:mode><GPI:mode>): Likewise. > --- > gcc/config/aarch64/aarch64.md | 77 +++++++++++++++++------------------ > 1 file changed, 38 insertions(+), 39 deletions(-) > > diff --git a/gcc/config/aarch64/aarch64.md b/gcc/config/aarch64/aarch64.md > index fcc24e300e6..d059a6362d5 100644 > --- a/gcc/config/aarch64/aarch64.md > +++ b/gcc/config/aarch64/aarch64.md > [...] > @@ -725,34 +725,34 @@ (define_expand "cbranch<mode>4" > ) > > (define_expand "cbranch<mode>4" > - [(set (pc) (if_then_else > - (match_operator 0 "aarch64_comparison_operator" > - [(match_operand:GPF_F16 1 "register_operand") > - (match_operand:GPF_F16 2 "aarch64_fp_compare_operand")]) > - (label_ref (match_operand 3 "" "")) > - (pc)))] > + [(set (pc) (if_then_else (match_operator 0 "aarch64_comparison_operator" > + [(match_operand:GPF_F16 1 "register_operand") > + (match_operand:GPF_F16 2 > "aarch64_fp_compare_operand")]) > + (label_ref (match_operand 3)) > + (pc)))]
I think we should drop this part, since it makes the lines go over the 80-character limit. OK with that change, thanks. Richard