[PUSHED,3/3] Formatting fix

Message ID 20260901124929.514896-3-j@lambda.is
State New
Headers
Series [PUSHED,1/3] Check past-the-end before dereferencing iterator |

Checks

Context Check Description
linaro-tcwg-bot/tcwg_simplebootstrap_build--master-aarch64-bootstrap fail Patch failed to apply
linaro-tcwg-bot/tcwg_simplebootstrap_build--master-arm-bootstrap fail Patch failed to apply

Commit Message

Jørgen Kvalsvik Sept. 1, 2026, 12:49 p.m. UTC
  gcc/ChangeLog:

	* profile.cc (coverage_instrumentation_p): Put return type on
	separate line.
---
 gcc/profile.cc | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
  

Patch

diff --git a/gcc/profile.cc b/gcc/profile.cc
index 5ae64d4043f..52704e93866 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;
 }