https://gcc.gnu.org/g:14517040305942ed24679d43a1d48b40356d6cd7
commit r17-3813-g14517040305942ed24679d43a1d48b40356d6cd7 Author: Jørgen Kvalsvik <[email protected]> Date: Tue Sep 1 14:33:17 2026 +0200 Formatting fix gcc/ChangeLog: * profile.cc (coverage_instrumentation_p): Put return type on separate line. Diff: --- gcc/profile.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gcc/profile.cc b/gcc/profile.cc index 5ae64d4043fd..52704e93866c 100644 --- a/gcc/profile.cc +++ b/gcc/profile.cc @@ -2071,7 +2071,8 @@ end_branch_prob (void) /* Return true if any cfg coverage/profiling is enabled; -fprofile-arcs -fcondition-coverage -fpath-coverage. */ -bool coverage_instrumentation_p () +bool +coverage_instrumentation_p () { return profile_arc_flag || condition_coverage_flag || path_coverage_flag; }
