From: Andrew Pinski Date: Mon, 22 Dec 2025 02:08:51 +0000 (-0800) Subject: cse: Small boolization of follow_jumps argument to cse_find_path X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ff2fd85330d33c75c8d337203ff02b0bafa3d69f;p=thirdparty%2Fgcc.git 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 --- diff --git a/gcc/cse.cc b/gcc/cse.cc index 2ad46306f4e..a86fe307819 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;