https://gcc.gnu.org/g:ff2fd85330d33c75c8d337203ff02b0bafa3d69f
commit r16-6565-gff2fd85330d33c75c8d337203ff02b0bafa3d69f Author: Andrew Pinski <[email protected]> Date: Sun Dec 21 18:08:51 2025 -0800 cse: Small boolization of follow_jumps argument to cse_find_path Just a small patch to change follow_jumps to bool since it is used as a bool. gcc/ChangeLog: * cse.cc (cse_find_path): Change follow_jumps to bool. Signed-off-by: Andrew Pinski <[email protected]> Diff: --- gcc/cse.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/cse.cc b/gcc/cse.cc index 2ad46306f4e2..a86fe3078195 100644 --- a/gcc/cse.cc +++ b/gcc/cse.cc @@ -6292,7 +6292,7 @@ cse_process_note (rtx x) static bool cse_find_path (basic_block first_bb, struct cse_basic_block_data *data, - int follow_jumps) + bool follow_jumps) { basic_block bb; edge e;
