https://gcc.gnu.org/bugzilla/show_bug.cgi?id=118366
Bug ID: 118366 Summary: style of comment for parameter for NEXT_PASS inside passes.def Product: gcc Version: 15.0 Status: UNCONFIRMED Keywords: internal-improvement Severity: enhancement Priority: P3 Component: middle-end Assignee: pinskia at gcc dot gnu.org Reporter: pinskia at gcc dot gnu.org Target Milestone: --- Some NEXT_PASS contains the name after the value while others are before: e.g: NEXT_PASS (pass_early_thread_jumps, /*first=*/true); NEXT_PASS (pass_cd_dce, false /* update_address_taken_p */, true /* remove_unused_locals */); This should be made consistent.