ewlu / gcc-precommit-ci

2 stars 0 forks source link

Patch Status 39592-Ternary_operator_formatting_fixes-1 #2389

Open github-actions[bot] opened 5 days ago

github-actions[bot] commented 5 days ago

Precommit CI Run information

Logs can be found in the associated Github Actions run: https://github.com/ewlu/gcc-precommit-ci/actions/runs/11364587273

Patch information

Applied patches: 1 -> 1 Associated series: https://patchwork.sourceware.org/project/gcc/list/?series=39592 Last patch applied: https://patchwork.sourceware.org/project/gcc/patch/Zw+cxabe7KB3btsK@tucnak/ Patch id: 98993

Build Targets

Some targets are built as multilibs. If a build target ends with multilib, please refer to the table below to see all the targets within that multilib. Target name -march string
newlib-rv64gcv-lp64d-multilib rv64gcv-lp64d, rv32gc-ilp32d, rv64gc-lp64d, rv32imc_zba_zbb_zbc_zbs-ilp32
linux-rv64gcv-lp64d-multilib rv32gcv-ilp32d, rv64gcv-lp64d
linux-rv64gc_zba_zbb_zbc_zbs-lp64d-multilib rv32gc_zba_zbb_zbc_zbs-ilp32d, rv64gc_zba_zbb_zbc_zbs-lp64d

Target Information

Target Shorthand -march string
Bitmanip gc_zba_zbb_zbc_zbs

Notes

Testsuite results use a more lenient allowlist to reduce error reporting with flakey tests. Please take a look at the current allowlist. Results come from a sum file comparator. Each patch is applied to a well known, non-broken baseline taken from our gcc postcommit framework (here) which runs the full gcc testsuite every 6 hours. If you have any questions or encounter any issues which may seem like false-positives, please contact us at patchworks-ci@rivosinc.com

github-actions[bot] commented 5 days ago

Lint Status

The following issues have been found with 39592-Ternary_operator_formatting_fixes-1 using gcc's ./contrib/check_GNU_style.py. Please use your best judgement when resolving these issues. These are only warnings and do not need to be resolved in order to merge your patch.

=== ERROR type #1: lines should not exceed 80 characters (3 error(s)) ===
gcc/basic-block.h:227:80:  for ((INSN) = BB_HEAD (BB), (CURR) = (INSN) ? NEXT_INSN ((INSN)) : NULL;        \
gcc/config/riscv/zc.md:1445:80:  { return (REGNO (operands[0]) == A0_REGNUM) ? "cm.mva01s\t%1,%3" : "cm.mva01s\t%3,%1"; }
gcc/config/riscv/zc.md:1457:80:  { return (REGNO (operands[1]) == A0_REGNUM) ? "cm.mvsa01\t%0,%2" : "cm.mvsa01\t%2,%0"; }

Additional information

github-actions[bot] commented 5 days ago

Apply Status

Target Status
Baseline hash: https://github.com/gcc-mirror/gcc/commit/e7380688fa5917011c3fb85b5e06fb00f776a95d Failed
Tip of tree hash: https://github.com/gcc-mirror/gcc/commit/62cdddd4e621a8182c58161188009f1e9b256e1b Failed

Command

> git am ../patches/*.patch --whitespace=fix -q --3way --empty=drop

Output

.git/rebase-apply/patch:528: trailing whitespace.
  value = value ? value - 1 
.git/rebase-apply/patch:532: trailing whitespace.

.git/rebase-apply/patch:533: trailing whitespace.
  if (value <= 0) 
error: sha1 information is lacking or useless (attribs.cc).
error: could not build fake ancestor
hint: Use 'git am --show-current-patch=diff' to see the failed patch
hint: When you have resolved this problem, run "git am --continue".
hint: If you prefer to skip this patch, run "git am --skip" instead.
hint: To restore the original branch and stop patching, run "git am --abort".
hint: Disable this message with "git config advice.mergeConflict false"
Patch failed at 0001 Ternary operator formatting fixes
--- gcc/attribs.cc.jj   2024-10-01 09:38:57.539968487 +0200
+++ gcc/attribs.cc  2024-10-16 12:22:13.136273474 +0200
@@ -381,7 +381,7 @@ lookup_scoped_attribute_spec (const_tree
   struct substring attr;
   scoped_attributes *attrs;

-  const char *ns_str = (ns != NULL_TREE) ? IDENTIFIER_POINTER (ns): NULL;
+  const char *ns_str = (ns != NULL_TREE) ? IDENTIFIER_POINTER (ns) : NULL;

   attrs = find_attribute_namespace (ns_str);

--- gcc/basic-block.h.jj    2024-01-03 11:51:30.094751134 +0100
+++ gcc/basic-block.h   2024-10-16 12:21:59.863461369 +0200
@@ -224,7 +224,7 @@ enum cfg_bb_flags
 /* For iterating over insns in basic block when we might remove the
    current insn.  */
 #define FOR_BB_INSNS_SAFE(BB, INSN, CURR)          \
-  for ((INSN) = BB_HEAD (BB), (CURR) = (INSN) ? NEXT_INSN ((INSN)): NULL;  \
+  for ((INSN) = BB_HEAD (BB), (CURR) = (INSN) ? NEXT_INSN ((INSN)) : NULL; \
        (INSN) && (INSN) != NEXT_INSN (BB_END (BB));    \
        (INSN) = (CURR), (CURR) = (INSN) ? NEXT_INSN ((INSN)) : NULL)

--- gcc/cfgcleanup.cc.jj    2024-01-03 11:51:40.682604184 +0100
+++ gcc/cfgcleanup.cc   2024-10-16 12:21:29.124896514 +0200
@@ -1862,9 +1862,9 @@ outgoing_edges_match (int mode, basic_bl
   if (fallthru1)
     {
       basic_block d1 = (FORWARDER_BLOCK_P (fallthru1->dest)
-           ? single_succ (fallthru1->dest): fallthru1->dest);
+           ? single_succ (fallthru1->dest) : fallthru1->dest);
       basic_block d2 = (FORWARDER_BLOCK_P (fallthru2->dest)
-           ? single_succ (fallthru2->dest): fallthru2->dest);
+           ? single_succ (fallthru2->dest) : fallthru2->dest);

       if (d1 != d2)
    return false;
--- gcc/cgraph.cc.jj    2024-09-06 14:24:42.210281295 +0200
+++ gcc/cgraph.cc   2024-10-16 12:21:08.781184507 +0200
@@ -2309,7 +2309,7 @@ cgraph_node::dump (FILE *f)
      if (edge->indirect_info->agg_contents)
       fprintf (f, "loaded from %s %s at offset %i ",
            edge->indirect_info->member_ptr ? "member ptr" : "aggregate",
-           edge->indirect_info->by_ref ? "passed by reference":"",
+           edge->indirect_info->by_ref ? "passed by reference" : "",
            (int)edge->indirect_info->offset);
      if (edge->indirect_info->vptr_changed)
        fprintf (f, "(vptr maybe changed) ");
--- gcc/config/arc/arc.cc.jj    2024-09-23 16:01:12.360215911 +0200
+++ gcc/config/arc/arc.cc   2024-10-16 12:33:06.551010659 +0200
@@ -9674,7 +9674,7 @@ arc_delegitimize_address (rtx orig_x)
 rtx
 gen_acc1 (void)
 {
-  return gen_rtx_REG (SImode, TARGET_BIG_ENDIAN ? 56: 57);
+  return gen_rtx_REG (SImode, TARGET_BIG_ENDIAN ? 56 : 57);
 }

 /* Return a REG rtx for acc2.  N.B. the gcc-internal representation may
@@ -9684,7 +9684,7 @@ gen_acc1 (void)
 rtx
 gen_acc2 (void)
 {
-  return gen_rtx_REG (SImode, TARGET_BIG_ENDIAN ? 57: 56);
+  return gen_rtx_REG (SImode, TARGET_BIG_ENDIAN ? 57 : 56);
 }

 /* When estimating sizes during arc_reorg, when optimizing for speed, there
--- gcc/config/arc/arc.h.jj 2024-09-23 16:01:12.360215911 +0200
+++ gcc/config/arc/arc.h    2024-10-16 12:32:53.492195905 +0200
@@ -608,8 +608,8 @@ extern enum reg_class arc_regno_reg_clas
    needed to represent mode MODE in a register of class CLASS.  */

 #define CLASS_MAX_NREGS(CLASS, MODE) \
-(( GET_MODE_SIZE (MODE) == 16 && CLASS == SIMD_VR_REGS) ? 1: \
-((GET_MODE_SIZE (MODE) + UNITS_PER_WORD - 1) / UNITS_PER_WORD))
+((GET_MODE_SIZE (MODE) == 16 && CLASS == SIMD_VR_REGS) ? 1 \
+ : ((GET_MODE_SIZE (MODE) + UNITS_PER_WORD - 1) / UNITS_PER_WORD))

 #define SMALL_INT(X) ((unsigned) ((X) + 0x100) < 0x200)
 #define SMALL_INT_RANGE(X, OFFSET, SHIFT)  \
@@ -868,9 +868,9 @@ extern int arc_initial_elimination_offse

 /* Recognize any constant value that is a valid address.  */
 #define CONSTANT_ADDRESS_P(X)                  \
-  (flag_pic ? (arc_legitimate_pic_addr_p (X) || LABEL_P (X)):  \
-   (GET_CODE (X) == LABEL_REF || GET_CODE (X) == SYMBOL_REF    \
-    || GET_CODE (X) == CONST_INT || GET_CODE (X) == CONST))
+  (flag_pic ? (arc_legitimate_pic_addr_p (X) || LABEL_P (X))   \
+   : (GET_CODE (X) == LABEL_REF || GET_CODE (X) == SYMBOL_REF  \
+      || GET_CODE (X) == CONST_INT || GET_CODE (X) == CONST))

 /* Is the argument a const_int rtx, containing an exact power of 2 */
 #define  IS_POWEROF2_P(X) (! ( (X) & ((X) - 1)) && (X))
--- gcc/config/arm/arm.cc.jj    2024-10-08 09:54:47.384484210 +0200
+++ gcc/config/arm/arm.cc   2024-10-16 12:31:44.047180997 +0200
@@ -24730,11 +24730,11 @@ arm_print_operand (FILE *stream, rtx x,
        asm_fprintf (stream, "[%r", REGNO (XEXP (addr, 0)));
        inc_val = GET_MODE_SIZE (GET_MODE (x));
        if (code == POST_INC || code == POST_DEC)
-         asm_fprintf (stream, "], #%s%d",(code == POST_INC)
-                         ? "": "-", inc_val);
+         asm_fprintf (stream, "], #%s%d", (code == POST_INC)
+                          ? "" : "-", inc_val);
        else
-         asm_fprintf (stream, ", #%s%d]!",(code == PRE_INC)
-                          ? "": "-", inc_val);
+         asm_fprintf (stream, ", #%s%d]!", (code == PRE_INC)
+                       ? "" : "-", inc_val);
      }
    else if (code == POST_MODIFY || code == PRE_MODIFY)
      {
@@ -24743,9 +24743,9 @@ arm_print_operand (FILE *stream, rtx x,
        if (postinc_reg && CONST_INT_P (postinc_reg))
          {
        if (code == POST_MODIFY)
-         asm_fprintf (stream, "], #%wd",INTVAL (postinc_reg));
+         asm_fprintf (stream, "], #%wd", INTVAL (postinc_reg));
        else
-         asm_fprintf (stream, ", #%wd]!",INTVAL (postinc_reg));
+         asm_fprintf (stream, ", #%wd]!", INTVAL (postinc_reg));
          }
      }
    else if (code == PLUS)
--- gcc/config/cris/cris.md.jj  2024-09-04 12:09:22.523809224 +0200
+++ gcc/config/cris/cris.md 2024-10-16 12:30:39.124101949 +0200
@@ -2418,7 +2418,7 @@ (define_insn "*b<rnzcond:code><mode>"
              (pc)))]
   "reload_completed"
 {
-  return <MODE>mode == CC_NZmode ? "b<oCC> %l0%#": "b<CC> %l0%#";
+  return <MODE>mode == CC_NZmode ? "b<oCC> %l0%#" : "b<CC> %l0%#";
 }
   [(set_attr "slottable" "has_slot")])
 
--- gcc/config/darwin.cc.jj 2024-06-05 15:42:28.094707717 +0200
+++ gcc/config/darwin.cc    2024-10-16 12:23:13.951412554 +0200
@@ -2403,7 +2403,7 @@ darwin_asm_declare_object_name (FILE *fi
 #ifdef DEBUG_DARWIN_MEM_ALLOCATORS
 fprintf (file, "# dadon: %s %s (%llu, %u) local %d weak %d"
           " stat %d com %d pub %d t-const %d t-ro %d init %lx\n",
-   xname, (TREE_CODE (decl) == VAR_DECL?"var":"const"),
+   xname, TREE_CODE (decl) == VAR_DECL ? "var" : "const",
    (unsigned long long)size, DECL_ALIGN (decl), local_def,
    DECL_WEAK (decl), TREE_STATIC (decl), DECL_COMMON (decl),
    TREE_PUBLIC (decl), TREE_CONSTANT (decl), TREE_READONLY (decl),
@@ -2641,7 +2641,7 @@ darwin_emit_common (FILE *fp, const char
   fputs ("\t.comm\t", fp);
   assemble_name (fp, name);
   fprintf (fp, "," HOST_WIDE_INT_PRINT_UNSIGNED,
-      emit_aligned_common?size:rounded);
+      emit_aligned_common ? size : rounded);
   if (l2align && emit_aligned_common)
     fprintf (fp, ",%u", l2align);
   fputs ("\n", fp);
--- gcc/config/darwin-driver.cc.jj  2024-01-03 11:51:42.998572040 +0100
+++ gcc/config/darwin-driver.cc 2024-10-16 12:23:34.502121633 +0200
@@ -370,7 +370,7 @@ darwin_driver_init (unsigned int *decode
     {
       if (seenX86_64 || seenM64)
    {
-     const char *op = (seenX86_64? "-arch x86_64": "-m64");
+     const char *op = (seenX86_64 ? "-arch x86_64" : "-m64");
      warning (0, "%qs conflicts with %<-arch i386%> (%qs ignored)",
           op, op);
    }
@@ -393,7 +393,7 @@ darwin_driver_init (unsigned int *decode
     {
       if (seenPPC64 || seenM64)
    {
-     const char *op = (seenPPC64? "-arch ppc64": "-m64");
+     const char *op = (seenPPC64 ? "-arch ppc64" : "-m64");
      warning (0, "%qs conflicts with %<-arch ppc%> (%qs ignored)",
           op, op);
    }
--- gcc/config/epiphany/epiphany.md.jj  2024-01-03 11:51:47.431510514 +0100
+++ gcc/config/epiphany/epiphany.md 2024-10-16 12:30:21.689349269 +0200
@@ -2187,14 +2187,14 @@ (define_expand "call"
   if (epiphany_uninterruptible_p (current_function_decl)
       != target_uninterruptible)
     {
-      emit_insn (target_uninterruptible ? gen_gid (): gen_gie ());
+      emit_insn (target_uninterruptible ? gen_gid () : gen_gie ());
       emit_call_insn
    (gen_rtx_PARALLEL
      (VOIDmode,
       gen_rtvec (2, gen_rtx_CALL (VOIDmode, operands[0], operands[1]),
             gen_rtx_CLOBBER (VOIDmode,
                      gen_rtx_REG (SImode, GPR_LR)))));
-      emit_insn (target_uninterruptible ? gen_gie (): gen_gid ());
+      emit_insn (target_uninterruptible ? gen_gie () : gen_gid ());
       DONE;
     }
 })
@@ -2225,13 +2225,13 @@ (define_expand "sibcall"
   if (epiphany_uninterruptible_p (current_function_decl)
       != target_uninterruptible)
     {
-      emit_insn (target_uninterruptible ? gen_gid (): gen_gie ());
+      emit_insn (target_uninterruptible ? gen_gid () : gen_gie ());
       emit_call_insn
    (gen_rtx_PARALLEL
      (VOIDmode,
       gen_rtvec (2, gen_rtx_CALL (VOIDmode, operands[0], operands[1]),
             ret_rtx)));
-      emit_insn (target_uninterruptible ? gen_gie (): gen_gid ());
+      emit_insn (target_uninterruptible ? gen_gie () : gen_gid ());
       DONE;
     }
 })
@@ -2264,7 +2264,7 @@ (define_expand "call_value"
   if (epiphany_uninterruptible_p (current_function_decl)
       != target_uninterruptible)
     {
-      emit_insn (target_uninterruptible ? gen_gid (): gen_gie ());
+      emit_insn (target_uninterruptible ? gen_gid () : gen_gie ());
       emit_call_insn
    (gen_rtx_PARALLEL
      (VOIDmode,
@@ -2273,7 +2273,7 @@ (define_expand "call_value"
                gen_rtx_CALL (VOIDmode, operands[1], operands[2])),
             gen_rtx_CLOBBER (VOIDmode,
                      gen_rtx_REG (SImode, GPR_LR)))));
-      emit_insn (target_uninterruptible ? gen_gie (): gen_gid ());
+      emit_insn (target_uninterruptible ? gen_gie () : gen_gid ());
       DONE;
     }
 })
@@ -2307,7 +2307,7 @@ (define_expand "sibcall_value"
   if (epiphany_uninterruptible_p (current_function_decl)
       != target_uninterruptible)
     {
-      emit_insn (target_uninterruptible ? gen_gid (): gen_gie ());
+      emit_insn (target_uninterruptible ? gen_gid () : gen_gie ());
       emit_call_insn
    (gen_rtx_PARALLEL
      (VOIDmode,
@@ -2315,7 +2315,7 @@ (define_expand "sibcall_value"
               (operands[0],
                gen_rtx_CALL (VOIDmode, operands[1], operands[2])),
             ret_rtx)));
-      emit_insn (target_uninterruptible ? gen_gie (): gen_gid ());
+      emit_insn (target_uninterruptible ? gen_gie () : gen_gid ());
       DONE;
     }
 })
--- gcc/config/i386/i386.cc.jj  2024-10-11 17:02:59.207424633 +0200
+++ gcc/config/i386/i386.cc 2024-10-16 12:29:45.301865433 +0200
@@ -6580,8 +6580,8 @@ gen_push2 (rtx mem, rtx reg1, rtx reg2,
   if (REG_P (reg2) && GET_MODE (reg2) != word_mode)
     reg2 = gen_rtx_REG (word_mode, REGNO (reg2));

-  return ppx_p ? gen_push2p_di (mem, reg1, reg2):
-        gen_push2_di (mem, reg1, reg2);
+  return ppx_p ? gen_push2p_di (mem, reg1, reg2)
+          : gen_push2_di (mem, reg1, reg2);
 }

 /* Return >= 0 if there is an unused call-clobbered register available
--- gcc/config/i386/i386.h.jj   2024-10-11 11:30:38.577393726 +0200
+++ gcc/config/i386/i386.h  2024-10-16 12:29:26.980125331 +0200
@@ -238,7 +238,7 @@ extern const struct processor_costs *ix8
 extern const struct processor_costs ix86_size_cost;

 #define ix86_cur_cost() \
-  (optimize_insn_for_size_p () ? &ix86_size_cost: ix86_cost)
+  (optimize_insn_for_size_p () ? &ix86_size_cost : ix86_cost)

 /* Macros used in the machine description to test the flags.  */

--- gcc/config/i386/openbsdelf.h.jj 2024-01-03 12:01:12.025639586 +0100
+++ gcc/config/i386/openbsdelf.h    2024-10-16 12:28:56.596556329 +0200
@@ -67,7 +67,7 @@ along with GCC; see the file COPYING3.
    The icky part is not here, but in <machine/profile.h>.  */
 #undef FUNCTION_PROFILER
 #define FUNCTION_PROFILER(FILE, LABELNO)  \
-  fputs (flag_pic ? "\tcall __mcount@PLT\n": "\tcall __mcount\n", FILE);
+  fputs (flag_pic ? "\tcall __mcount@PLT\n" : "\tcall __mcount\n", FILE);

 #undef LINK_SPEC
 #define LINK_SPEC \
--- gcc/config/loongarch/loongarch-c.cc.jj  2024-04-23 08:31:05.408162556 +0200
+++ gcc/config/loongarch/loongarch-c.cc 2024-10-16 12:28:32.288901143 +0200
@@ -116,7 +116,7 @@ loongarch_cpu_cpp_builtins (cpp_reader *

    max_v_major = major > max_v_major ? major : max_v_major;
    max_v_minor = major == max_v_major
-     ? (minor > max_v_minor ? minor : max_v_minor): max_v_minor;
+     ? (minor > max_v_minor ? minor : max_v_minor) : max_v_minor;
       }

   /* Find the minimum ISA version required to run the target program.  */
--- gcc/config/loongarch/loongarch-cpu.cc.jj    2024-04-23 08:31:05.429162257 +0200
+++ gcc/config/loongarch/loongarch-cpu.cc   2024-10-16 12:28:21.266057502 +0200
@@ -265,11 +265,11 @@ fill_native_cpu_config (struct loongarch
       l1u_present |= cpucfg_cache[16] & 3;   /* bit[1:0]: unified l1 */
       l1d_present |= cpucfg_cache[16] & 4;   /* bit[2:2]: l1d */
       l1_szword = l1d_present ? 18 : (l1u_present ? 17 : 0);
-      l1_szword = l1_szword ? cpucfg_cache[l1_szword]: 0;
+      l1_szword = l1_szword ? cpucfg_cache[l1_szword] : 0;

       l2d_present |= cpucfg_cache[16] & 24;      /* bit[4:3]: unified l2 */
       l2d_present |= cpucfg_cache[16] & 128;     /* bit[7:7]: l2d */
-      l2_szword = l2d_present ? cpucfg_cache[19]: 0;
+      l2_szword = l2d_present ? cpucfg_cache[19] : 0;

       native_cache.l1d_line_size
    = 1 << ((l1_szword & 0x7f000000) >> 24);  /* bit[30:24]: log2(line) */
--- gcc/config/riscv/riscv.cc.jj    2024-10-11 11:30:38.677392347 +0200
+++ gcc/config/riscv/riscv.cc   2024-10-16 12:27:14.402005987 +0200
@@ -6622,8 +6622,8 @@ riscv_union_memmodels (enum memmodel mod
   model1 = memmodel_base (model1);
   model2 = memmodel_base (model2);

-  enum memmodel weaker = model1 <= model2 ? model1: model2;
-  enum memmodel stronger = model1 > model2 ? model1: model2;
+  enum memmodel weaker = model1 <= model2 ? model1 : model2;
+  enum memmodel stronger = model1 > model2 ? model1 : model2;

   switch (stronger)
     {
--- gcc/config/riscv/zc.md.jj   2024-08-07 09:38:00.581810853 +0200
+++ gcc/config/riscv/zc.md  2024-10-16 12:26:46.841396947 +0200
@@ -1442,7 +1442,7 @@ (define_insn "*mva01s<X:mode>"
         (match_operand:X 3 "zcmp_mv_sreg_operand" "r"))]
   "TARGET_ZCMP
    && (REGNO (operands[2]) != REGNO (operands[0]))"
-  { return (REGNO (operands[0]) == A0_REGNUM)?"cm.mva01s\t%1,%3":"cm.mva01s\t%3,%1"; }
+  { return (REGNO (operands[0]) == A0_REGNUM) ? "cm.mva01s\t%1,%3" : "cm.mva01s\t%3,%1"; }
   [(set_attr "mode" "<X:MODE>")
    (set_attr "type" "mvpair")])

@@ -1454,6 +1454,6 @@ (define_insn "*mvsa01<X:mode>"
   "TARGET_ZCMP
    && (REGNO (operands[0]) != REGNO (operands[2]))
    && (REGNO (operands[1]) != REGNO (operands[3]))"
-  { return (REGNO (operands[1]) == A0_REGNUM)?"cm.mvsa01\t%0,%2":"cm.mvsa01\t%2,%0"; }
+  { return (REGNO (operands[1]) == A0_REGNUM) ? "cm.mvsa01\t%0,%2" : "cm.mvsa01\t%2,%0"; }
   [(set_attr "mode" "<X:MODE>")
    (set_attr "type" "mvpair")])
--- gcc/config/rs6000/mmintrin.h.jj 2024-01-03 12:01:19.689532217 +0100
+++ gcc/config/rs6000/mmintrin.h    2024-10-16 12:25:59.918062564 +0200
@@ -743,14 +743,14 @@ _mm_cmpeq_pi8 (__m64 __m1, __m64 __m2)
   __mu1.as_m64 = __m1;
   __mu2.as_m64 = __m2;

-  __res.as_char[0] = (__mu1.as_char[0] == __mu2.as_char[0])? -1: 0;
-  __res.as_char[1] = (__mu1.as_char[1] == __mu2.as_char[1])? -1: 0;
-  __res.as_char[2] = (__mu1.as_char[2] == __mu2.as_char[2])? -1: 0;
-  __res.as_char[3] = (__mu1.as_char[3] == __mu2.as_char[3])? -1: 0;
-  __res.as_char[4] = (__mu1.as_char[4] == __mu2.as_char[4])? -1: 0;
-  __res.as_char[5] = (__mu1.as_char[5] == __mu2.as_char[5])? -1: 0;
-  __res.as_char[6] = (__mu1.as_char[6] == __mu2.as_char[6])? -1: 0;
-  __res.as_char[7] = (__mu1.as_char[7] == __mu2.as_char[7])? -1: 0;
+  __res.as_char[0] = (__mu1.as_char[0] == __mu2.as_char[0]) ? -1 : 0;
+  __res.as_char[1] = (__mu1.as_char[1] == __mu2.as_char[1]) ? -1 : 0;
+  __res.as_char[2] = (__mu1.as_char[2] == __mu2.as_char[2]) ? -1 : 0;
+  __res.as_char[3] = (__mu1.as_char[3] == __mu2.as_char[3]) ? -1 : 0;
+  __res.as_char[4] = (__mu1.as_char[4] == __mu2.as_char[4]) ? -1 : 0;
+  __res.as_char[5] = (__mu1.as_char[5] == __mu2.as_char[5]) ? -1 : 0;
+  __res.as_char[6] = (__mu1.as_char[6] == __mu2.as_char[6]) ? -1 : 0;
+  __res.as_char[7] = (__mu1.as_char[7] == __mu2.as_char[7]) ? -1 : 0;

   return (__m64) __res.as_m64;
 #endif
@@ -778,14 +778,14 @@ _mm_cmpgt_pi8 (__m64 __m1, __m64 __m2)
   __mu1.as_m64 = __m1;
   __mu2.as_m64 = __m2;

-  __res.as_char[0] = (__mu1.as_char[0] > __mu2.as_char[0])? -1: 0;
-  __res.as_char[1] = (__mu1.as_char[1] > __mu2.as_char[1])? -1: 0;
-  __res.as_char[2] = (__mu1.as_char[2] > __mu2.as_char[2])? -1: 0;
-  __res.as_char[3] = (__mu1.as_char[3] > __mu2.as_char[3])? -1: 0;
-  __res.as_char[4] = (__mu1.as_char[4] > __mu2.as_char[4])? -1: 0;
-  __res.as_char[5] = (__mu1.as_char[5] > __mu2.as_char[5])? -1: 0;
-  __res.as_char[6] = (__mu1.as_char[6] > __mu2.as_char[6])? -1: 0;
-  __res.as_char[7] = (__mu1.as_char[7] > __mu2.as_char[7])? -1: 0;
+  __res.as_char[0] = (__mu1.as_char[0] > __mu2.as_char[0]) ? -1 : 0;
+  __res.as_char[1] = (__mu1.as_char[1] > __mu2.as_char[1]) ? -1 : 0;
+  __res.as_char[2] = (__mu1.as_char[2] > __mu2.as_char[2]) ? -1 : 0;
+  __res.as_char[3] = (__mu1.as_char[3] > __mu2.as_char[3]) ? -1 : 0;
+  __res.as_char[4] = (__mu1.as_char[4] > __mu2.as_char[4]) ? -1 : 0;
+  __res.as_char[5] = (__mu1.as_char[5] > __mu2.as_char[5]) ? -1 : 0;
+  __res.as_char[6] = (__mu1.as_char[6] > __mu2.as_char[6]) ? -1 : 0;
+  __res.as_char[7] = (__mu1.as_char[7] > __mu2.as_char[7]) ? -1 : 0;

   return (__m64) __res.as_m64;
 #endif
@@ -815,10 +815,10 @@ _mm_cmpeq_pi16 (__m64 __m1, __m64 __m2)
   __mu1.as_m64 = __m1;
   __mu2.as_m64 = __m2;

-  __res.as_short[0] = (__mu1.as_short[0] == __mu2.as_short[0])? -1: 0;
-  __res.as_short[1] = (__mu1.as_short[1] == __mu2.as_short[1])? -1: 0;
-  __res.as_short[2] = (__mu1.as_short[2] == __mu2.as_short[2])? -1: 0;
-  __res.as_short[3] = (__mu1.as_short[3] == __mu2.as_short[3])? -1: 0;
+  __res.as_short[0] = (__mu1.as_short[0] == __mu2.as_short[0]) ? -1 : 0;
+  __res.as_short[1] = (__mu1.as_short[1] == __mu2.as_short[1]) ? -1 : 0;
+  __res.as_short[2] = (__mu1.as_short[2] == __mu2.as_short[2]) ? -1 : 0;
+  __res.as_short[3] = (__mu1.as_short[3] == __mu2.as_short[3]) ? -1 : 0;

   return (__m64) __res.as_m64;
 #endif
@@ -846,10 +846,10 @@ _mm_cmpgt_pi16 (__m64 __m1, __m64 __m2)
   __mu1.as_m64 = __m1;
   __mu2.as_m64 = __m2;

-  __res.as_short[0] = (__mu1.as_short[0] > __mu2.as_short[0])? -1: 0;
-  __res.as_short[1] = (__mu1.as_short[1] > __mu2.as_short[1])? -1: 0;
-  __res.as_short[2] = (__mu1.as_short[2] > __mu2.as_short[2])? -1: 0;
-  __res.as_short[3] = (__mu1.as_short[3] > __mu2.as_short[3])? -1: 0;
+  __res.as_short[0] = (__mu1.as_short[0] > __mu2.as_short[0]) ? -1 : 0;
+  __res.as_short[1] = (__mu1.as_short[1] > __mu2.as_short[1]) ? -1 : 0;
+  __res.as_short[2] = (__mu1.as_short[2] > __mu2.as_short[2]) ? -1 : 0;
+  __res.as_short[3] = (__mu1.as_short[3] > __mu2.as_short[3]) ? -1 : 0;

   return (__m64) __res.as_m64;
 #endif
@@ -879,8 +879,8 @@ _mm_cmpeq_pi32 (__m64 __m1, __m64 __m2)
   __mu1.as_m64 = __m1;
   __mu2.as_m64 = __m2;

-  __res.as_int[0] = (__mu1.as_int[0] == __mu2.as_int[0])? -1: 0;
-  __res.as_int[1] = (__mu1.as_int[1] == __mu2.as_int[1])? -1: 0;
+  __res.as_int[0] = (__mu1.as_int[0] == __mu2.as_int[0]) ? -1 : 0;
+  __res.as_int[1] = (__mu1.as_int[1] == __mu2.as_int[1]) ? -1 : 0;

   return (__m64) __res.as_m64;
 #endif
@@ -908,8 +908,8 @@ _mm_cmpgt_pi32 (__m64 __m1, __m64 __m2)
   __mu1.as_m64 = __m1;
   __mu2.as_m64 = __m2;

-  __res.as_int[0] = (__mu1.as_int[0] > __mu2.as_int[0])? -1: 0;
-  __res.as_int[1] = (__mu1.as_int[1] > __mu2.as_int[1])? -1: 0;
+  __res.as_int[0] = (__mu1.as_int[0] > __mu2.as_int[0]) ? -1 : 0;
+  __res.as_int[1] = (__mu1.as_int[1] > __mu2.as_int[1]) ? -1 : 0;

   return (__m64) __res.as_m64;
 #endif
--- gcc/config/v850/predicates.md.jj    2024-01-03 11:51:50.068473916 +0100
+++ gcc/config/v850/predicates.md   2024-10-16 12:24:44.377132460 +0200
@@ -182,7 +182,7 @@ (define_predicate "pattern_is_ok_for_pro

      */

-  for (i = 2; i < count - (TARGET_LONG_CALLS ? 2: 1); i++)
+  for (i = 2; i < count - (TARGET_LONG_CALLS ? 2 : 1); i++)
     {
       rtx dest;
       rtx src;
--- gcc/config/xtensa/constraints.md.jj 2024-01-31 10:46:35.295759886 +0100
+++ gcc/config/xtensa/constraints.md    2024-10-16 12:24:27.422372475 +0200
@@ -32,7 +32,7 @@ (define_register_constraint "c" "TARGET_
   General-purpose AR registers for indirect sibling calls, @code{a2}-
   @code{a8}.")

-(define_register_constraint "d" "TARGET_DENSITY ? AR_REGS: NO_REGS"
+(define_register_constraint "d" "TARGET_DENSITY ? AR_REGS : NO_REGS"
  "@internal
   All AR registers, including sp, but only if the Xtensa Code Density
   Option is configured.")
@@ -53,7 +53,7 @@ (define_register_constraint "B" "TARGET_
   General-purpose AR registers, but only if the Xtensa Sign Extend
   Option is configured.")

-(define_register_constraint "C" "TARGET_MUL16 ? GR_REGS: NO_REGS"
+(define_register_constraint "C" "TARGET_MUL16 ? GR_REGS : NO_REGS"
  "@internal
   General-purpose AR registers, but only if the Xtensa 16-Bit Integer
   Multiply Option is configured.")
@@ -63,7 +63,7 @@ (define_register_constraint "D" "TARGET_
   General-purpose AR registers, but only if the Xtensa Code Density
   Option is configured.")

-(define_register_constraint "W" "TARGET_CONST16 ? GR_REGS: NO_REGS"
+(define_register_constraint "W" "TARGET_CONST16 ? GR_REGS : NO_REGS"
  "@internal
   General-purpose AR registers, but only if the Xtensa Const16
   Option is configured.")
--- gcc/coverage.cc.jj  2024-08-30 09:09:45.452624051 +0200
+++ gcc/coverage.cc 2024-10-16 12:20:38.037619722 +0200
@@ -658,7 +658,7 @@ coverage_begin_function (unsigned lineno
   int end_line
     = endloc.file == startloc.file ? endloc.line : startloc.line;
   int end_column
-    = endloc.file == startloc.file ? endloc.column: startloc.column;
+    = endloc.file == startloc.file ? endloc.column : startloc.column;

   if (startloc.line > end_line)
     {
@@ -1089,8 +1089,8 @@ build_init_ctor (tree gcov_info_type)
   append_to_statement_list (stmt, &ctor);

   /* Generate a constructor to run it.  */
-  int priority = SUPPORTS_INIT_PRIORITY
-    ? MAX_RESERVED_INIT_PRIORITY: DEFAULT_INIT_PRIORITY;
+  int priority = (SUPPORTS_INIT_PRIORITY
+         ? MAX_RESERVED_INIT_PRIORITY : DEFAULT_INIT_PRIORITY);
   cgraph_build_static_cdtor ('I', ctor, priority);
 }

@@ -1112,8 +1112,8 @@ build_gcov_exit_decl (void)
   append_to_statement_list (stmt, &dtor);

   /* Generate a destructor to run it.  */
-  int priority = SUPPORTS_INIT_PRIORITY
-    ? MAX_RESERVED_INIT_PRIORITY: DEFAULT_INIT_PRIORITY;
+  int priority = (SUPPORTS_INIT_PRIORITY
+         ? MAX_RESERVED_INIT_PRIORITY : DEFAULT_INIT_PRIORITY);

   cgraph_build_static_cdtor ('D', dtor, priority);
 }
--- gcc/df-problems.cc.jj   2024-07-03 14:47:56.000185226 +0200
+++ gcc/df-problems.cc  2024-10-16 12:20:02.040129313 +0200
@@ -3532,7 +3532,7 @@ df_create_unused_note (rtx_insn *insn, d
    || df_ignore_stack_reg (dregno)))
     {
       rtx reg = (DF_REF_LOC (def))
-                ? *DF_REF_REAL_LOC (def): DF_REF_REG (def);
+       ? *DF_REF_REAL_LOC (def) : DF_REF_REG (def);
       df_set_note (REG_UNUSED, insn, reg);
       dead_debug_insert_temp (debug, dregno, insn, DEBUG_TEMP_AFTER_WITH_REG);
       if (REG_DEAD_DEBUGGING)
--- gcc/diagnostic.cc.jj    2024-10-15 07:40:55.154815917 +0200
+++ gcc/diagnostic.cc   2024-10-16 12:19:50.820288144 +0200
@@ -118,7 +118,7 @@ diagnostic_set_caret_max_width (diagnost
   /* One minus to account for the leading empty space.  */
   value = value ? value - 1 
     : (isatty (fileno (pp_buffer (context->m_printer)->m_stream))
-       ? get_terminal_width () - 1: INT_MAX);
+       ? get_terminal_width () - 1 : INT_MAX);

   if (value <= 0) 
     value = INT_MAX;
--- gcc/diagnostic-path.cc.jj   2024-10-01 09:38:57.983962284 +0200
+++ gcc/diagnostic-path.cc  2024-10-16 12:19:32.018554305 +0200
@@ -795,7 +795,7 @@ path_summary::path_summary (const path_p
      continue;

       auto theme = policy.get_diagram_theme ();
-      const bool allow_emojis = theme ? theme->emojis_p (): false;
+      const bool allow_emojis = theme ? theme->emojis_p () : false;
       cur_event_range = new event_range (path, idx, event, pts,
                     show_event_links,
                     colorize,
--- gcc/expr.cc.jj  2024-10-16 10:32:27.321945711 +0200
+++ gcc/expr.cc 2024-10-16 12:19:12.229834437 +0200
@@ -9670,7 +9670,7 @@ expand_expr_divmod (tree_code code, mach

       if (dump_file && (dump_flags & TDF_DETAILS))
      fprintf(dump_file, "positive division:%s unsigned cost: %u; "
-         "signed cost: %u\n", was_tie ? "(needed tie breaker)":"",
+         "signed cost: %u\n", was_tie ? "(needed tie breaker)" : "",
          uns_cost, sgn_cost);

       if (uns_cost < sgn_cost || (uns_cost == sgn_cost && unsignedp))
--- gcc/gcov.cc.jj  2024-09-09 09:27:39.101083190 +0200
+++ gcc/gcov.cc 2024-10-16 12:18:38.563311037 +0200
@@ -2733,7 +2733,7 @@ format_gcov (gcov_type top, gcov_type bo

   if (decimal_places >= 0)
     {
-      float ratio = bottom ? 100.0f * top / bottom: 0;
+      float ratio = bottom ? 100.0f * top / bottom : 0;

       /* Round up to 1% if there's a small non-zero value.  */
       if (ratio > 0.0f && ratio < 0.5f && decimal_places == 0)
--- gcc/gcov-dump.cc.jj 2024-04-05 09:19:48.173046609 +0200
+++ gcc/gcov-dump.cc    2024-10-16 12:18:20.195571058 +0200
@@ -299,8 +299,8 @@ dump_gcov_file (const char *filename)
       gcov_sync (base, length);
       if ((error = gcov_is_error ()))
    {
-     printf (error < 0 ? "%s:counter overflow at %lu\n" :
-         "%s:read error at %lu\n", filename,
+     printf (error < 0 ? "%s:counter overflow at %lu\n"
+         : "%s:read error at %lu\n", filename,
          (long unsigned) gcov_position ());
      break;
    }
--- gcc/genmatch.cc.jj  2024-10-15 13:48:45.910163684 +0200
+++ gcc/genmatch.cc 2024-10-16 12:17:40.385134630 +0200
@@ -6115,8 +6115,8 @@ main (int argc, char **argv)

   if (!cpp_read_main_file (r, input))
     return 1;
-  cpp_define (r, gimple ? "GIMPLE=1": "GENERIC=1");
-  cpp_define (r, gimple ? "GENERIC=0": "GIMPLE=0");
+  cpp_define (r, gimple ? "GIMPLE=1" : "GENERIC=1");
+  cpp_define (r, gimple ? "GENERIC=0" : "GIMPLE=0");

   null_id = new id_base (id_base::NULL_ID, "null");

--- gcc/incpath.cc.jj   2024-09-12 11:05:22.062903807 +0200
+++ gcc/incpath.cc  2024-10-16 12:17:16.053479072 +0200
@@ -313,7 +313,7 @@ remove_duplicates (cpp_reader *pfile, st

       /* Remove this entry from the chain.  */
       *pcur = cur->next;
-      free_path (cur, verbose ? reason: REASON_QUIET);
+      free_path (cur, verbose ? reason : REASON_QUIET);
     }

   *pcur = join;
@@ -495,7 +495,7 @@ register_include_chains (cpp_reader *pfi
     { "C_INCLUDE_PATH", "CPLUS_INCLUDE_PATH",
       "OBJC_INCLUDE_PATH", "OBJCPLUS_INCLUDE_PATH" };
   cpp_options *cpp_opts = cpp_get_options (pfile);
-  size_t idx = (cpp_opts->objc ? 2: 0);
+  size_t idx = (cpp_opts->objc ? 2 : 0);

   if (cpp_opts->cplusplus)
     idx++;
--- gcc/ipa-devirt.cc.jj    2024-02-22 10:10:18.953028444 +0100
+++ gcc/ipa-devirt.cc   2024-10-16 12:16:58.628725741 +0200
@@ -2146,8 +2146,8 @@ dump_odr_type (FILE *f, odr_type t, int
   unsigned int i;
   fprintf (f, "%*s type %i: ", indent * 2, "", t->id);
   print_generic_expr (f, t->type, TDF_SLIM);
-  fprintf (f, "%s", t->anonymous_namespace ? " (anonymous namespace)":"");
-  fprintf (f, "%s\n", t->all_derivations_known ? " (derivations known)":"");
+  fprintf (f, "%s", t->anonymous_namespace ? " (anonymous namespace)" : "");
+  fprintf (f, "%s\n", t->all_derivations_known ? " (derivations known)" : "");
   if (TYPE_NAME (t->type))
     {
       if (DECL_ASSEMBLER_NAME_SET_P (TYPE_NAME (t->type)))
--- gcc/ipa-icf.cc.jj   2024-10-01 09:38:58.120960370 +0200
+++ gcc/ipa-icf.cc  2024-10-16 12:16:34.095073048 +0200
@@ -3410,7 +3410,7 @@ sem_item_optimizer::merge_classes (unsig
       unsigned total = equal_items + non_singular_classes_count;
       fprintf (dump_file, "Totally needed symbols: %u"
           ", fraction of loaded symbols: %.2f%%\n\n", total,
-          loaded_symbols ? 100.0f * total / loaded_symbols: 0.0f);
+          loaded_symbols ? 100.0f * total / loaded_symbols : 0.0f);
     }

   unsigned int l;
--- gcc/ipa-inline.cc.jj    2024-05-21 10:19:35.557513890 +0200
+++ gcc/ipa-inline.cc   2024-10-16 12:16:18.067299941 +0200
@@ -2447,7 +2447,8 @@ inline_small_functions (void)
               s->time.to_double (),
               ipa_size_summaries->get (edge->caller)->size,
               buf_net_change,
-              cross_module_call_p (edge) ? " (cross module)":"");
+              cross_module_call_p (edge)
+              ? " (cross module)" : "");
    }
       if (min_size > overall_size)
    {
@@ -2463,7 +2464,7 @@ inline_small_functions (void)
     dump_printf (MSG_NOTE,
         "Unit growth for small function inlining: %i->%i (%i%%)\n",
         initial_size, overall_size,
-        initial_size ? overall_size * 100 / (initial_size) - 100: 0);
+        initial_size ? overall_size * 100 / (initial_size) - 100 : 0);
   symtab->remove_edge_removal_hook (edge_removal_hook_holder);
 }

--- gcc/ipa-polymorphic-call.cc.jj  2024-01-18 08:44:33.583917908 +0100
+++ gcc/ipa-polymorphic-call.cc 2024-10-16 12:15:45.397762422 +0200
@@ -624,7 +624,7 @@ ipa_polymorphic_call_context::dump (FILE
    fprintf (f, "nothing known");
       if (outer_type || offset)
    {
-     fprintf (f, "Outer type%s:", dynamic ? " (dynamic)":"");
+     fprintf (f, "Outer type%s:", dynamic ? " (dynamic)" : "");
      print_generic_expr (f, outer_type, TDF_SLIM);
      if (maybe_derived_type)
        fprintf (f, " (or a derived type)");
--- gcc/ipa-sra.cc.jj   2024-02-22 10:10:19.051027091 +0100
+++ gcc/ipa-sra.cc  2024-10-16 12:15:31.848954218 +0200
@@ -1256,7 +1256,7 @@ create_parameter_descriptors (cgraph_nod
        fprintf (dump_file, " is a scalar with only %i call uses%s\n",
             desc->call_uses,
             desc->remove_only_when_retval_removed
-            ? " and return uses": "");
+            ? " and return uses" : "");
    }

       if (POINTER_TYPE_P (type))
--- gcc/ipa-utils.cc.jj 2024-09-25 16:06:33.755423642 +0200
+++ gcc/ipa-utils.cc    2024-10-16 12:15:16.243175141 +0200
@@ -1012,11 +1012,16 @@ find_always_executed_bbs (function *fun,
      cstate->low = MIN (cstate->low, (*cstate2)->low);
      cstate->high = MAX (cstate->high, (*cstate2)->high);
    }
-      if (dump_file && (dump_flags & TDF_DETAILS) && bb != EXIT_BLOCK_PTR_FOR_FN (fun))
-   fprintf (dump_file, "BB %i %s preorder %i posorder %i low %i high %i\n",
-        bb->index, terminating_bbs_set.contains (bb) ? "(terminating)": "",
-        cstate->dfs_preorder, cstate->dfs_postorder, cstate->low, cstate->high);
-      if (cstate->low == cstate->dfs_preorder && cstate->high == cstate->dfs_postorder
+      if (dump_file && (dump_flags & TDF_DETAILS)
+     && bb != EXIT_BLOCK_PTR_FOR_FN (fun))
+   fprintf (dump_file,
+        "BB %i %s preorder %i posorder %i low %i high %i\n",
+        bb->index,
+        terminating_bbs_set.contains (bb) ? "(terminating)" : "",
+        cstate->dfs_preorder, cstate->dfs_postorder, cstate->low,
+        cstate->high);
+      if (cstate->low == cstate->dfs_preorder
+     && cstate->high == cstate->dfs_postorder
      && bb != EXIT_BLOCK_PTR_FOR_FN (fun))
    bitmap_set_bit (ret, bb->index);
       if (terminating_bbs_set.contains (bb))
@@ -1035,7 +1040,7 @@ find_always_executed_bbs (function *fun,
   if (dump_file)
     {
       fprintf (dump_file, "Always executed bbbs %s: ",
-          assume_return_or_eh ? "(assuming return or EH)": "");
+          assume_return_or_eh ? "(assuming return or EH)" : "");
       bitmap_print (dump_file, ret, "", "\n");
     }

--- gcc/predict.cc.jj   2024-10-02 13:30:14.966371866 +0200
+++ gcc/predict.cc  2024-10-16 12:13:29.880680846 +0200
@@ -1989,7 +1989,7 @@ predict_loops (void)

       if (dump_file && (dump_flags & TDF_DETAILS))
    fprintf (dump_file, "Predicting loop %i%s with %i exits.\n",
-        loop->num, recursion ? " (with recursion)":"", n_exits);
+        loop->num, recursion ? " (with recursion)" : "", n_exits);
       if (dump_file && (dump_flags & TDF_DETAILS)
      && max_loop_iterations_int (loop) >= 0)
    {
--- gcc/selftest.cc.jj  2024-01-03 11:51:31.742728261 +0100
+++ gcc/selftest.cc 2024-10-16 12:12:49.063258668 +0200
@@ -257,7 +257,7 @@ read_file (const location &loc, const ch
       /* Allow 1 extra byte for 0-termination.  */
       if (alloc_sz < (total_sz + 1))
    {
-     size_t new_alloc_sz = alloc_sz ? alloc_sz * 2: total_sz + 1;
+     size_t new_alloc_sz = alloc_sz ? alloc_sz * 2 : total_sz + 1;
      result = (char *)xrealloc (result, new_alloc_sz);
      alloc_sz = new_alloc_sz;
    }
--- gcc/sreal.h.jj  2024-01-03 11:51:31.741728275 +0100
+++ gcc/sreal.h 2024-10-16 12:12:29.959529103 +0200
@@ -30,8 +30,8 @@ along with GCC; see the file COPYING3.

 #define SREAL_BITS SREAL_PART_BITS

-#define SREAL_SIGN(v) (v < 0 ? -1: 1)
-#define SREAL_ABS(v) (v < 0 ? -v: v)
+#define SREAL_SIGN(v) (v < 0 ? -1 : 1)
+#define SREAL_ABS(v) (v < 0 ? -v : v)

 struct output_block;
 class lto_input_block;
--- gcc/tree-dump.cc.jj 2024-01-03 11:51:31.995724750 +0100
+++ gcc/tree-dump.cc    2024-10-16 12:12:06.167865911 +0200
@@ -442,7 +442,8 @@ dequeue_and_dump (dump_info_p di)
     case INTEGER_TYPE:
     case ENUMERAL_TYPE:
       dump_int (di, "prec", TYPE_PRECISION (t));
-      dump_string_field (di, "sign", TYPE_UNSIGNED (t) ? "unsigned": "signed");
+      dump_string_field (di, "sign",
+            TYPE_UNSIGNED (t) ? "unsigned" : "signed");
       dump_child ("min", TYPE_MIN_VALUE (t));
       dump_child ("max", TYPE_MAX_VALUE (t));

@@ -456,9 +457,11 @@ dequeue_and_dump (dump_info_p di)

     case FIXED_POINT_TYPE:
       dump_int (di, "prec", TYPE_PRECISION (t));
-      dump_string_field (di, "sign", TYPE_UNSIGNED (t) ? "unsigned": "signed");
+      dump_string_field (di, "sign",
+            TYPE_UNSIGNED (t) ? "unsigned" : "signed");
       dump_string_field (di, "saturating",
-            TYPE_SATURATING (t) ? "saturating": "non-saturating");
+            TYPE_SATURATING (t)
+            ? "saturating" : "non-saturating");
       break;

     case POINTER_TYPE:
--- gcc/tree-ssa-ccp.cc.jj  2024-09-10 16:26:03.432143727 +0200
+++ gcc/tree-ssa-ccp.cc 2024-10-16 12:11:03.923747051 +0200
@@ -1848,7 +1848,7 @@ bit_value_binop (enum tree_code code, si
    /* Do a cross comparison of the max/min pairs.  */
    maxmin = wi::cmp (max1, min2, r1type_sgn);
    minmax = wi::cmp (min1, max2, r1type_sgn);
-   if (maxmin < (code == LE_EXPR ? 1: 0))  /* o1 < or <= o2.  */
+   if (maxmin < (code == LE_EXPR ? 1 : 0))  /* o1 < or <= o2.  */
      {
        *mask = 0;
        *val = 1;
--- gcc/c-family/c-opts.cc.jj   2024-10-16 11:37:45.587122992 +0200
+++ gcc/c-family/c-opts.cc  2024-10-16 12:08:18.272092687 +0200
@@ -242,7 +242,7 @@ c_common_init_options (unsigned int deco
   g_string_concat_db
     = new (ggc_alloc <string_concat_db> ()) string_concat_db ();

-  parse_in = cpp_create_reader (c_dialect_cxx () ? CLK_GNUCXX: CLK_GNUC89,
+  parse_in = cpp_create_reader (c_dialect_cxx () ? CLK_GNUCXX : CLK_GNUC89,
                ident_hash, line_table, ident_hash_extra);
   cb = cpp_get_callbacks (parse_in);
   cb->diagnostic = c_cpp_diagnostic;
@@ -358,13 +358,13 @@ c_common_handle_option (size_t scode, co
     preprocessed output, but still do -dM etc. as software
     depends on this.  Preprocessed output does occur if -MD, -MMD
     or environment var dependency generation is used.  */
-      cpp_opts->deps.style = (code == OPT_M ? DEPS_SYSTEM: DEPS_USER);
+      cpp_opts->deps.style = (code == OPT_M ? DEPS_SYSTEM : DEPS_USER);
       flag_no_output = 1;
       break;

     case OPT_MD:
     case OPT_MMD:
-      cpp_opts->deps.style = (code == OPT_MD ? DEPS_SYSTEM: DEPS_USER);
+      cpp_opts->deps.style = (code == OPT_MD ? DEPS_SYSTEM : DEPS_USER);
       cpp_opts->deps.need_preprocessor_output = true;
       deps_file = arg;
       break;
@@ -1389,7 +1389,7 @@ c_common_finish (void)
    deps_stream = stdout;
       else
    {
-     deps_stream = fopen (deps_file, deps_append ? "a": "w");
+     deps_stream = fopen (deps_file, deps_append ? "a" : "w");
      if (!deps_stream)
        fatal_error (input_location, "opening dependency file %s: %m",
             deps_file);
@@ -1811,7 +1811,7 @@ cb_dir_change (cpp_reader * ARG_UNUSED (
 static void
 set_std_c89 (int c94, int iso)
 {
-  cpp_set_lang (parse_in, c94 ? CLK_STDC94: iso ? CLK_STDC89: CLK_GNUC89);
+  cpp_set_lang (parse_in, c94 ? CLK_STDC94 : iso ? CLK_STDC89 : CLK_GNUC89);
   flag_iso = iso;
   flag_no_asm = iso;
   flag_no_gnu_keywords = iso;
@@ -1828,7 +1828,7 @@ set_std_c89 (int c94, int iso)
 static void
 set_std_c99 (int iso)
 {
-  cpp_set_lang (parse_in, iso ? CLK_STDC99: CLK_GNUC99);
+  cpp_set_lang (parse_in, iso ? CLK_STDC99 : CLK_GNUC99);
   flag_no_asm = iso;
   flag_no_nonansi_builtin = iso;
   flag_iso = iso;
@@ -1844,7 +1844,7 @@ set_std_c99 (int iso)
 static void
 set_std_c11 (int iso)
 {
-  cpp_set_lang (parse_in, iso ? CLK_STDC11: CLK_GNUC11);
+  cpp_set_lang (parse_in, iso ? CLK_STDC11 : CLK_GNUC11);
   flag_no_asm = iso;
   flag_no_nonansi_builtin = iso;
   flag_iso = iso;
@@ -1860,7 +1860,7 @@ set_std_c11 (int iso)
 static void
 set_std_c17 (int iso)
 {
-  cpp_set_lang (parse_in, iso ? CLK_STDC17: CLK_GNUC17);
+  cpp_set_lang (parse_in, iso ? CLK_STDC17 : CLK_GNUC17);
   flag_no_asm = iso;
   flag_no_nonansi_builtin = iso;
   flag_iso = iso;
@@ -1876,7 +1876,7 @@ set_std_c17 (int iso)
 static void
 set_std_c23 (int iso)
 {
-  cpp_set_lang (parse_in, iso ? CLK_STDC23: CLK_GNUC23);
+  cpp_set_lang (parse_in, iso ? CLK_STDC23 : CLK_GNUC23);
   flag_no_asm = iso;
   flag_no_nonansi_builtin = iso;
   flag_iso = iso;
@@ -1909,7 +1909,7 @@ set_std_c2y (int iso)
 static void
 set_std_cxx98 (int iso)
 {
-  cpp_set_lang (parse_in, iso ? CLK_CXX98: CLK_GNUCXX);
+  cpp_set_lang (parse_in, iso ? CLK_CXX98 : CLK_GNUCXX);
   flag_no_gnu_keywords = iso;
   flag_no_nonansi_builtin = iso;
   flag_iso = iso;
@@ -1923,7 +1923,7 @@ set_std_cxx98 (int iso)
 static void
 set_std_cxx11 (int iso)
 {
-  cpp_set_lang (parse_in, iso ? CLK_CXX11: CLK_GNUCXX11);
+  cpp_set_lang (parse_in, iso ? CLK_CXX11 : CLK_GNUCXX11);
   flag_no_gnu_keywords = iso;
   flag_no_nonansi_builtin = iso;
   flag_iso = iso;
@@ -1938,7 +1938,7 @@ set_std_cxx11 (int iso)
 static void
 set_std_cxx14 (int iso)
 {
-  cpp_set_lang (parse_in, iso ? CLK_CXX14: CLK_GNUCXX14);
+  cpp_set_lang (parse_in, iso ? CLK_CXX14 : CLK_GNUCXX14);
   flag_no_gnu_keywords = iso;
   flag_no_nonansi_builtin = iso;
   flag_iso = iso;
@@ -1953,7 +1953,7 @@ set_std_cxx14 (int iso)
 static void
 set_std_cxx17 (int iso)
 {
-  cpp_set_lang (parse_in, iso ? CLK_CXX17: CLK_GNUCXX17);
+  cpp_set_lang (parse_in, iso ? CLK_CXX17 : CLK_GNUCXX17);
   flag_no_gnu_keywords = iso;
   flag_no_nonansi_builtin = iso;
   flag_iso = iso;
@@ -1969,7 +1969,7 @@ set_std_cxx17 (int iso)
 static void
 set_std_cxx20 (int iso)
 {
-  cpp_set_lang (parse_in, iso ? CLK_CXX20: CLK_GNUCXX20);
+  cpp_set_lang (parse_in, iso ? CLK_CXX20 : CLK_GNUCXX20);
   flag_no_gnu_keywords = iso;
   flag_no_nonansi_builtin = iso;
   flag_iso = iso;
@@ -1987,7 +1987,7 @@ set_std_cxx20 (int iso)
 static void
 set_std_cxx23 (int iso)
 {
-  cpp_set_lang (parse_in, iso ? CLK_CXX23: CLK_GNUCXX23);
+  cpp_set_lang (parse_in, iso ? CLK_CXX23 : CLK_GNUCXX23);
   flag_no_gnu_keywords = iso;
   flag_no_nonansi_builtin = iso;
   flag_iso = iso;
@@ -2005,7 +2005,7 @@ set_std_cxx23 (int iso)
 static void
 set_std_cxx26 (int iso)
 {
-  cpp_set_lang (parse_in, iso ? CLK_CXX26: CLK_GNUCXX26);
+  cpp_set_lang (parse_in, iso ? CLK_CXX26 : CLK_GNUCXX26);
   flag_no_gnu_keywords = iso;
   flag_no_nonansi_builtin = iso;
   flag_iso = iso;
--- gcc/cp/search.cc.jj 2024-10-02 10:02:14.508806215 +0200
+++ gcc/cp/search.cc    2024-10-16 12:09:26.090132015 +0200
@@ -1290,7 +1290,7 @@ lookup_member (tree xbasetype, tree name
       && !dguide_name_p (name))
     rval = build_baselink (rval_binfo, basetype_path, rval,
               (IDENTIFIER_CONV_OP_P (name)
-              ? TREE_TYPE (name): NULL_TREE));
+               ? TREE_TYPE (name) : NULL_TREE));
   return rval;
 }

--- gcc/cp/typeck.cc.jj 2024-09-25 16:06:33.735423914 +0200
+++ gcc/cp/typeck.cc    2024-10-16 12:09:44.221875339 +0200
@@ -9829,7 +9829,7 @@ cp_build_modify_expr (location_t loc, tr
    }

       from_array = TREE_CODE (TREE_TYPE (newrhs)) == ARRAY_TYPE
-          ? 1 + (modifycode != INIT_EXPR): 0;
+          ? 1 + (modifycode != INIT_EXPR) : 0;
       result = build_vec_init (lhs, NULL_TREE, newrhs,
                   /*explicit_value_init_p=*/false,
                   from_array, complain);
--- libcpp/expr.cc.jj   2024-10-16 11:37:45.180128781 +0200
+++ libcpp/expr.cc  2024-10-16 12:36:53.012798239 +0200
@@ -141,9 +141,9 @@ interpret_float_suffix (cpp_reader *pfil
       bool uppercase = (*s == 'D');
       switch (s[1])
       {
-      case 'f': return (!uppercase ? (CPP_N_DFLOAT | CPP_N_SMALL): 0); break;
+      case 'f': return (!uppercase ? (CPP_N_DFLOAT | CPP_N_SMALL) : 0); break;
       case 'F': return (uppercase ? (CPP_N_DFLOAT | CPP_N_SMALL) : 0); break;
-      case 'd': return (!uppercase ? (CPP_N_DFLOAT | CPP_N_MEDIUM): 0); break;
+      case 'd': return (!uppercase ? (CPP_N_DFLOAT | CPP_N_MEDIUM) : 0); break;
       case 'D': return (uppercase ? (CPP_N_DFLOAT | CPP_N_MEDIUM) : 0); break;
       case 'l': return (!uppercase ? (CPP_N_DFLOAT | CPP_N_LARGE) : 0); break;
       case 'L': return (uppercase ? (CPP_N_DFLOAT | CPP_N_LARGE) : 0); break;

Additional information